import { ContactItem } from "./contact-item"; export declare class ContactBook { readonly items: ContactItem[]; constructor(items: ContactItem[]); getPrimaryEmailAddress(): string | undefined; getPrimaryPhoneNumber(): string | undefined; }