///
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