export declare function brotliDecodedSize(buffer: Uint8Array): number; export interface BrotliDecodeOptions { maxOutputSize?: number; customDictionary?: Uint8Array | Int8Array; } export declare function brotliDecode(buffer: Uint8Array, options?: BrotliDecodeOptions | number): Uint8Array; //# sourceMappingURL=decode.d.ts.map