import { E_WalletApp } from 'src/modules/loyaltyProgram/common/backend/enums';
import { T_DeviceData } from 'src/modules/loyaltyProgram/common/client/types';
export type T_RegisterCustomerBodyParams = {
    brandId: string;
    country_code: string;
    phone: string;
    first_name: string;
    last_name: string;
    title: string;
    birthDate?: string;
    email?: string;
    enrollmentCode?: string;
    deviceData?: T_DeviceData;
    loyaltyRegistrationBranchId?: string;
    source?: string;
    walletApp: E_WalletApp;
};
//# sourceMappingURL=index.d.ts.map