import { ContactParams } from "./contact-params"; export declare class ContactItem { readonly data: ContactParams; readonly id: string; readonly hash: string; addrs: string[]; groups: string[]; names: string[]; notes: string; canSendFromAddrs: string[]; constructor(props: ContactParams); matchesAddressOrName(search: string): boolean; matchesGroup(group: string): boolean; getFirstEmail(): string | undefined; getFirstPhone(): string | undefined; getMatchingAddresses(search: string): string[]; getName(): string; getData(): ContactParams; }