import { Pbkdf2 } from './Pbkdf2.js';
export declare class CryptoUtils {
    static passwordHashAlgorithm: Pbkdf2;
    static getPasswordHash(password: string): string;
    static isPasswordMatch(storedValue: string, inputPassword: string): boolean;
}
