export declare const MIN_PASSWORD_LENGTH = 12;
export declare function hashPassword(plaintext: string): Promise<string>;
export declare function verifyPassword(storedHash: string, plaintext: string): Promise<boolean>;
