import { ResetPasswordRequest } from "./dto/reset-password-request.dto";
import { ResetPasswordService } from "./reset-password.service";
import { OkResponse } from "../dto";
import { UserService } from "../user/user.service";
export declare class ResetPasswordController {
    private readonly userService;
    private readonly resetPasswordService;
    constructor(userService: UserService, resetPasswordService: ResetPasswordService);
    resetPasswordAsync(resetPasswordRequest: ResetPasswordRequest): Promise<OkResponse>;
}
