import crypto from "crypto"; declare const SecureHasher: { generateRandomSalt(salt_length: number): string; hash(value_to_hash: crypto.BinaryLike, salt: crypto.BinaryLike, { iterations, key_length }: { iterations: number; key_length: number; }): Promise; matches(value: crypto.BinaryLike, hash_with_params: string): Promise; }; export default SecureHasher;