/** * HAR Converter Utility * * Converts NetworkRequest[] to HAR (HTTP Archive) format */ import type { NetworkRequest } from '../types/index.js'; import type { Har, HarExportOptions } from '../types/har.js'; /** * Convert NetworkRequest[] to HAR format */ export declare function convertToHar(requests: NetworkRequest[], options?: HarExportOptions): Har; /** * Serialize HAR to JSON string */ export declare function serializeHar(har: Har, pretty?: boolean): string; //# sourceMappingURL=har-converter.d.ts.map