import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type ResetPasswordInput = { password: string; password_confirmation: string; reset_password_token: string | undefined; }; declare const ResetPassword: (http: HttpClient) => { query: (input: ResetPasswordInput) => Promise>; }; export default ResetPassword;