/// import { createBrotliCompress, createBrotliDecompress } from 'zlib'; import type { GetOptions } from '.'; declare const brotliDisallowOptionNameList: readonly ["flush", "finishFlush", "maxOutputLength"]; declare type BrotliDisallowOptionName = (typeof brotliDisallowOptionNameList)[number]; declare type BrotliOptions = GetOptions; declare type BrotliDisallowedOptions = Omit; export declare function createCompress(options: BrotliDisallowedOptions): () => import("zlib").BrotliCompress; export { createBrotliDecompress as createDecompress };