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