import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CustomerCheckResponse } from "../types"; export declare const checkCustomerEmail: (input: CheckCustomerEmailQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type CheckCustomerEmailQueryParams = { captchaToken?: string | null; email: string; locale?: string | null; };