import React, { FC } from 'react'; import { ContactInfoPropsType } from './types'; import { Styles } from 'react-select'; import { OptionsSelectType } from '../Common/types'; import { ShippingAddressClassesType } from './types'; import { latLngType } from '../Map/types'; export declare type ShippingAddressPropsType = { classes?: ShippingAddressClassesType; logistixStyles?: Partial; shippingAddressLabel?: string; handleShippingAddress: (name: string, value: string) => void; handleLogistixChange: (option: OptionsSelectType) => void; handleLatLngChange: (data: latLngType) => void; onErrorMsg: (msg: string) => void; placeOrderInput: Omit; mapIcon?: React.ReactNode; mapButtonCloseIcon?: React.ReactNode; mapCenterIcon?: React.ReactNode; mapPinIcon?: React.ReactNode; mapSearchIcon?: React.ReactNode; }; declare const ShippingAddress: FC; export default ShippingAddress;