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; export {};