import { ReactNode } from 'react'; import { MapClassesType, MapProps } from '../Map'; import { AdddressPopupClassesType } from '../Map/components/AddressPopup'; import { BillingAddressPropsType } from '../PlaceOrderForm/BillingAddress'; import { ContactInfoPropsType } from '../PlaceOrderForm/types'; export declare type AddressDetailPopupClassesType = Partial; export declare type AddressDetailPopupIconsType = { close?: ReactNode; back?: ReactNode; search?: ReactNode; mapCenter?: ReactNode; mapPin?: ReactNode; }; export declare type AddressDetailPopupStepsType = 'locationPinpoint' | 'addressForm'; export declare type AddressDetailPopupType = { closePopup: () => void; onErrorMsg: (msg: string) => void; handleAddressForm: (name: string, value: string) => void; icons?: AddressDetailPopupIconsType; classes?: AddressDetailPopupClassesType; placeOrderInput: Pick; } & Pick & Pick; declare const AddressDetailPopup: ({ closePopup, handleSetLocation, onErrorMsg, handleLogistixChange, handleAddressForm, classes, icons, placeOrderInput, logistixStyles, }: AddressDetailPopupType) => JSX.Element; export default AddressDetailPopup;