import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type ForgotPasswordInput = { email: string; }; declare const forgotPassword: (http: HttpClient) => { query: (input: ForgotPasswordInput) => Promise>; }; export default forgotPassword;