import { CartVariablesType } from '../../Common/types'; export declare type DataAccountType = { ID: string; firstName: string; lastName: string; email: string; phone: string; addresses: AddressesType[]; }; declare type AddressesType = { location: string; districtCode: string; addressLabel: string; street: string; postalCode: string; latitude: string; longitude: string; }; export declare const convertAccountData: { (dataAccount: DataAccountType): CartVariablesType; displayName: string; __docgenInfo: { description: string; displayName: string; props: { ID: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; firstName: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; lastName: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; email: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; phone: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; addresses: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export {};