export interface Address { street: string; city: string; state: string; zipCode: string; country: string; fullAddress?: string; } interface AddressInputProps { value: Address; onChange: (address: Address) => void; disabled?: boolean; className?: string; layout?: "inline" | "stacked"; showFullAddress?: boolean; } export declare function AddressInput({ value, onChange, disabled, className, layout, showFullAddress, }: AddressInputProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=address-input.d.ts.map