import type { ExternalTypes } from '../typing'; export declare const customerAccount: (account: ExternalTypes.CustomerAccount) => { email: string; firstName: string; lastName: string; phone: string | undefined; }; export declare const register: (account: ExternalTypes.CustomerAccount, password: string) => { password: string; email: string; firstName: string; lastName: string; phone: string | undefined; };