interface Address { address1: string; address2: string; city: string; state: string; postal: string; countryCode: string; } declare type StringMap = { [key: string]: string | null; }; export interface AddressInputProps { className?: string; compact?: boolean; countries?: string[]; defaultValue?: StringMap; disabled?: boolean; error?: Partial
; hints?: Partial
; id?: string; inputName?: Address; labels?: Address; onBlur?: (inputName: string) => void; onChange?: (address: StringMap) => void; showCountry?: boolean; showLabels?: boolean; value?: StringMap; } declare const AddressInput: ({ className, compact, countries, defaultValue, disabled, error, hints, id, inputName, labels, onBlur, onChange, showCountry, showLabels, value, }: AddressInputProps) => JSX.Element; export default AddressInput;