export declare function generateId(length: number): string; export declare function generateIdFromEntropySize(size: number): string; export declare class Scrypt implements PasswordHashingAlgorithm { hash(password: string): Promise; verify(hash: string, password: string): Promise; } export declare class LegacyScrypt implements PasswordHashingAlgorithm { hash(password: string): Promise; verify(hash: string, password: string): Promise; } export interface PasswordHashingAlgorithm { hash(password: string): Promise; verify(hash: string, password: string): Promise; }