import { ConfigService } from '@nestjs/config';
import { JwtService } from '@nestjs/jwt';
import { AppConfig } from "../config/configs";
export declare class AuthHelper {
    private readonly configService;
    private readonly jwtService;
    constructor(configService: ConfigService<AppConfig, true>, jwtService: JwtService);
    hashPassword(password: string): Promise<string>;
    verifyPassword(password: string, hash: string): Promise<boolean>;
    generateToken(payload: any): string;
    verifyToken(token: string): any;
}
