import { EncryptedData } from 'src/Types'; export declare class CryptoUtils { private static generateKey; private static exportKey; private static importKey; static encrypt(data: string, key?: string): Promise; static decrypt(encryptedData: EncryptedData): Promise; static hash(data: string): Promise; static generateRandomId(length?: number): string; }