/**
 * collectHtmlContent.client.ts
 *
 * PURPOSE: Collects HTML stream with metrics
 *
 * This module:
 * 1. Takes an HTML stream and collects it
 * 2. Tracks metrics (chunks, bytes, duration)
 * 3. Returns buffered content and metrics
 * 4. Does NOT create HTML streams - that's the caller's responsibility
 * 5. Does NOT write files - that's the caller's responsibility
 */
import type { CollectHtmlContentFn } from "./types.js";
export declare const collectHtmlContent: CollectHtmlContentFn;
//# sourceMappingURL=collectHtmlContent.d.ts.map