import React, { FC } from 'react'; import { MapClassesType } from '../../Map'; import { Styles } from 'react-select'; export declare type MyAccountClassesType = Partial; declare type MyAccountPropsType = { onErrorMsg: (msg: string) => void; onSuccessMsg: (msg: string, data: any) => void; onFetchCompleted?: (msg: string, data: any) => void; myAccountHeader?: any; loadingComponent?: React.ReactNode; errorComponent?: React.ReactNode; isEditable?: boolean; getLoyaltyPoint?: (loyaltyPoint: number) => void; styles?: Partial; logistixSearchLimit?: number; classes: MyAccountClassesType; mapIcon?: React.ReactNode; mapButtonCloseIcon?: React.ReactNode; mapCenterIcon?: React.ReactNode; }; declare const MyAccount: FC; export default MyAccount;