import { type ZipWarning } from '../errors.js'; import type { ZipLimits } from '../types.js'; export interface LimitTotals { totalUncompressed: bigint; } export interface LimitTransformOptions { entryName: string; compressedSize: bigint; limits: Required; strict: boolean; totals?: LimitTotals; onWarning?: (warning: ZipWarning) => void; signal?: AbortSignal; } export declare function createLimitTransform(options: LimitTransformOptions): TransformStream; //# sourceMappingURL=limits.d.ts.map