/// import type { OutputFormat, Output, StrictUint8Array } from './types' export interface ChachaOptions { key: StrictUint8Array data: StrictUint8Array nonce: StrictUint8Array additionalData?: StrictUint8Array format?: F } export function encryptChacha20poly1305( options: ChachaOptions ): Promise> export function decryptChacha20poly1305( options: ChachaOptions ): Promise> export function encryptXchacha20poly1305( options: ChachaOptions ): Promise> export function decryptXchacha20poly1305( options: ChachaOptions ): Promise>