import { JwtService } from "@nestjs/jwt";
import { UserRepository } from "@features/users/infrastructure/repositories/user.repository";
import { ResetPasswordDto } from "../dtos/request/reset-password.dto";
export declare class ResetPasswordUseCase {
    private readonly userRepository;
    private readonly jwtService;
    constructor(userRepository: UserRepository, jwtService: JwtService);
    execute(dto: ResetPasswordDto): Promise<{
        message: string;
    }>;
}
