export declare function hashPassword(password: string): Promise<{ passwordHash: string; passwordSalt: string; }>; export declare function verifyPassword(password: string, salt: string, hash: string): Promise; //# sourceMappingURL=UserAuth.d.ts.map