export declare const formats: { [key: string]: any; }; export declare type AddressPropType = { address1?: string; address2?: string; city?: string; state?: string; postal?: string; countryCode?: string; }; declare type StatesType = { name: string; code: string; }[]; declare type AddressFormatsType = { [k: string]: any; fields: Array>; states?: StatesType; }; export default function getAddressFormat(countryCode: string): AddressFormatsType; export {};