export type XChaCha20CodecConfig = Record; export declare const XCHACHA20POLY1305_CODEC_ID = "xchacha20poly1305"; export interface CodecRegistrationOptions { getKey: (config: XChaCha20CodecConfig) => Promise | string | Uint8Array; getHeader?: (config: XChaCha20CodecConfig) => Promise | string | Uint8Array | undefined; nonceGenerator?: () => Promise | Uint8Array | ArrayBuffer | ArrayBufferView | number[]; } export declare function registerXChaCha20Poly1305Codec(options: CodecRegistrationOptions): void; //# sourceMappingURL=xchacha20poly1305.d.ts.map