import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CustomerAttributeValueInput, CustomerGenderTypeEnum, CustomerLoginResponse, CustomerRegisterSubscriptionInput } from "../types"; export declare const registerCustomer: (input: RegisterCustomerQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type RegisterCustomerQueryParams = { attributes?: CustomerAttributeValueInput[] | null; birthDate?: any | null; captchaToken?: string | null; email: string; firstName: string; flowId?: string | null; gender?: CustomerGenderTypeEnum | null; isAcceptMarketing?: boolean | null; lastName: string; locale?: string | null; orderId?: string | null; password?: string; phone?: string | null; preferredLanguage?: string | null; subscriptions?: CustomerRegisterSubscriptionInput | null; };