import React, { FC } from 'react'; import { LogistixFieldPropsType } from '../Common/components/LogistixField'; import { ContactInfoPropsType, BillingAddressClassesType } from './types'; import { latLngType } from '../Map/types'; export declare type BillingAddressPropsType = { auth?: string; logistixStyles?: LogistixFieldPropsType['styles']; withRegisterFields?: boolean; passwordViewIcon?: any; passwordHideIcon?: any; onErrorMsg: (msg: string) => void; handleBillingAddress: (name: string, value: string | Date | Date[]) => void; handleLogistixChange: LogistixFieldPropsType['onChange']; handleLatLngChange: (option: latLngType) => void; placeOrderInput: ContactInfoPropsType; passwordUnfulfilledCriteriaIcon?: any; passwordFulfilledCriteriaIcon?: any; datePickerClearIcon?: any; datePickerCalendarIcon?: any; classes?: BillingAddressClassesType; mapIcon?: React.ReactNode; mapButtonCloseIcon?: React.ReactNode; mapCenterIcon?: React.ReactNode; mapPinIcon?: React.ReactNode; mapSearchIcon?: React.ReactNode; }; declare const BillingAddress: FC; export default BillingAddress;