/** Phone book */
export interface Phonebook {
    /** Identifier of the phonebook */
    bookKey: string;
    /** Phonebook name */
    name: string;
    /** Phone key identifier between the phone and phonebooks */
    phoneKey: string;
}
//# sourceMappingURL=Phonebook.d.ts.map