export function deriveKey(secret: string, roomName: string): PromiseLike; export function encrypt(data: Uint8Array, key: CryptoKey | null): PromiseLike; export function encryptJson(data: any, key: CryptoKey | null): PromiseLike; export function decrypt(data: Uint8Array, key: CryptoKey | null): PromiseLike; export function decryptJson(data: Uint8Array, key: CryptoKey | null): PromiseLike;