export interface VcardAddress { /** Country name. */ countryName?: string; /** Extended address information (apartment, suite, etc.). */ extendedAddress?: string; /** Complete formatted address as a single string. */ fulladdress?: string; /** City or locality. */ locality?: string; /** ZIP code or postal code. */ postalCode?: string; /** P.O. Box number. */ postOfficeBox?: string; /** State, province, or region. */ region?: string; /** Street address or street name and number. */ streetAddress?: string; /** Address type classifications. */ type?: VcardAddress.Type.Item[]; } export declare namespace VcardAddress { type Type = Type.Item[]; namespace Type { const Item: { readonly Dom: "DOM"; readonly Intl: "INTL"; readonly Postal: "POSTAL"; readonly Parcel: "PARCEL"; readonly Home: "HOME"; readonly Work: "WORK"; readonly Pref: "PREF"; }; type Item = (typeof Item)[keyof typeof Item]; } }