/** * Uses Web Crypto API to encrypt a string using AES encryption. */ export declare function encrypt(value: string, seed: string): Promise; /** * Uses Web Crypto API to decrypt a string using AES encryption. */ export declare function decrypt(value: string, seed: string): Promise; export declare function randomString(bytes?: number): string;