export declare class CryptoUtil { static hashPassword(password: string): Promise; static comparePassword(password: string, hashedPassword: string): Promise; static generateUUID(): string; static generateRandomString(length?: number): string; }