export interface VcardPhone { /** Phone number type classifications. */ type?: VcardPhone.Type.Item[]; /** Phone number in any format. */ value?: string; } export declare namespace VcardPhone { type Type = Type.Item[]; namespace Type { const Item: { readonly Pref: "PREF"; readonly Work: "WORK"; readonly Home: "HOME"; readonly Voice: "VOICE"; readonly Fax: "FAX"; readonly Msg: "MSG"; readonly Cell: "CELL"; readonly Pager: "PAGER"; readonly Bbs: "BBS"; readonly Modem: "MODEM"; readonly Car: "CAR"; readonly Isdn: "ISDN"; readonly Video: "VIDEO"; }; type Item = (typeof Item)[keyof typeof Item]; } }