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