import type { CompressOptions, DecompressOptions } from '../types.js'; /** Compress to the gzip format. Level `0`–`9`; mode chooses the default. */ export declare function gzip(data: Uint8Array, opts?: CompressOptions): Promise; /** Decompress a gzip buffer. */ export declare function gunzip(data: Uint8Array, opts?: DecompressOptions): Promise; //# sourceMappingURL=gzip.d.ts.map