import type { Context } from '../context.js'; export interface CompressionOptions { level?: number; threshold?: number; algorithms?: ('gzip' | 'deflate' | 'br')[]; filter?: (contentType: string) => boolean; } export declare function compressionPlugin(options?: CompressionOptions): (ctx: Context, next: () => Promise) => Promise; //# sourceMappingURL=compression.d.ts.map