export declare class XChaCha20 { static decrypt(options: { data: Uint8Array; key: Uint8Array; nonce: Uint8Array; }): Promise; static encrypt(options: { data: Uint8Array; key: Uint8Array; nonce: Uint8Array; }): Promise; static generateKey(): Promise; } //# sourceMappingURL=xchacha20.d.ts.map