export declare type ScriptType = 'local' | 'latin'; export declare type Address = { postalCountry?: string; administrativeArea?: string; locality?: string; dependentLocality?: string; postalCode?: string; sortingCode?: string; organization?: string; name?: string; addressLines?: string[]; }; declare const formatAddress: (address: Address, scriptType?: ScriptType) => string[]; export default formatAddress;