export declare class PasswordUtility { hash(plaintext: string): Promise; compare(plaintext: string, hashed: string | null): Promise; }