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