import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NetworkLogResourceInfo } from "./networklogresourceinfo.js"; export type NetworkLog = { /** * Storage handle for the full HAR network log. */ harHandle?: string | undefined; /** * Resources fetched during page load. */ resources?: Array | null | undefined; }; /** @internal */ export declare const NetworkLog$inboundSchema: z.ZodType; export declare function networkLogFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=networklog.d.ts.map