import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EndpointScan } from "./endpointscan.js"; import { FieldDiff } from "./fielddiff.js"; export type EndpointScanned = { diff?: { [k: string]: FieldDiff; } | undefined; scan?: EndpointScan | undefined; }; /** @internal */ export declare const EndpointScanned$inboundSchema: z.ZodType; export declare function endpointScannedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=endpointscanned.d.ts.map