import { FunctionComponent } from 'react'; import { ValidationError } from '../../common/form/use-input-field'; export interface BillingAddressZipProps { value?: string | null; disabled?: boolean; onChange?: (value: string, error?: ValidationError) => void; } export declare const BillingAddressZip: FunctionComponent; export default BillingAddressZip;