import { IkasCustomerGenderTypeEnum } from "../customer"; import { IkasCustomerRegisterSubscriptionInput } from "./customer-register-subscription-input"; export declare type IkasSaveCustomerFormDataInput = { birthDate: any | null; captchaToken: string | null; email: string; firstName: string | null; gender: IkasCustomerGenderTypeEnum | null; lastName: string | null; phone: string | null; storefrontPopupId: string | null; subscriptions: IkasCustomerRegisterSubscriptionInput | null; };