import { InternationalPhoneNumber } from '../InternationalPhoneNumber';
/** Phone book contact */
export interface PhonebookContact {
    /** Group name of the phonebook */
    group: string;
    /** Home mobile phone number of the contact */
    homeMobile?: InternationalPhoneNumber;
    /** Home landline phone number of the contact */
    homePhone?: InternationalPhoneNumber;
    /** Contact identifier */
    id: number;
    /** Contact name */
    name: string;
    /** Contact surname */
    surname: string;
    /** Mobile phone office number of the contact */
    workMobile?: InternationalPhoneNumber;
    /** Landline phone office number of the contact */
    workPhone?: InternationalPhoneNumber;
}
//# sourceMappingURL=PhonebookContact.d.ts.map