import type { PasswordHashAlgorithm } from './PasswordHashAlgorithm.js'; export declare class Pbkdf2 implements PasswordHashAlgorithm { iterations: number; keyLen: number; digest: string; getSaltedHash(password: string): string; isHashMatch(storedValue: string, inputPassword: string): boolean; getHashFromStringWithSalt(str: string, salt: string): string; }