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