export declare class ContactAddress { static fromPrefixedString(prefixed: string): ContactAddress; static parsePhoneNumber(search: string): string | undefined; static isValidPhoneNumber(search: string): boolean; static isValidUserHash(search: string): true | undefined; static isValidEmailAddress(search: string): boolean; static parseEmail(search: string): string | undefined; static formatAddress(type: string, address: string): string; static formatPhoneNumber(phoneNumber: string): string; type: string; address: string; constructor(type: string, address: string); matches(search: string): boolean; matchesExactly(addressType: string, addressValue: string): boolean; toPrefixedString(): string; formattedAddress(): string; }