import React, { FC } from 'react'; import { Styles } from 'react-select'; import { MyAccountClassesType } from '../components/MyAccount'; import { AddressType } from '../types'; export declare type AccountDetailsPropsType = { myAccountHeader?: any; account: { firstName: string; lastName: string; gender: string; phone: string; email: string; dateOfBirth: number; addresses: AddressType[]; }; isEditable?: boolean; handleAccountToggle: () => void; classes: MyAccountClassesType; styles?: Partial; logistixSearchLimit?: number; onErrorMsg?: (msg: string) => void; onSuccessMsg?: (data: any, msg: string) => void; refetch?: any; mapIcon?: React.ReactNode; mapButtonCloseIcon?: React.ReactNode; mapCenterIcon?: React.ReactNode; datePickerClearIcon?: any; datePickerCalendarIcon?: any; }; declare const AccountDetails: FC; export default AccountDetails;