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