/// import { createGunzip, createGzip } from 'zlib'; import type { GetOptions } from '.'; declare const gzipDisallowOptionNameList: readonly ["flush", "finishFlush", "dictionary", "info", "maxOutputLength"]; declare type GzipDisallowOptionName = (typeof gzipDisallowOptionNameList)[number]; declare type GzipOptions = GetOptions; declare type GzipDisallowedOptions = Omit; export declare function createCompress(options: GzipDisallowedOptions): () => import("zlib").Gzip; export { createGunzip as createDecompress };