/** * Enforce `maxResponseSize` on a Response. If `Content-Length` is present * and exceeds the cap, throws synchronously (fast path — no bytes read). * Otherwise wraps the body in a counting TransformStream that aborts on * the first chunk that pushes the running total past the cap. */ export declare function enforceMaxResponseSize(response: Response, limit: number | false): Response;