import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ServiceOnHostRange = { /** * When the service was last observed */ endTime: Date; /** * IP address where the service was observed */ ip: string; /** * Port number where the service was observed */ port: string; /** * Application protocol (e.g., HTTP, HTTPS) */ protocol: string; /** * When the service was first observed */ startTime: Date; /** * Transport protocol (e.g., TCP, UDP, QUIC) */ transportProtocol: string; }; /** @internal */ export declare const ServiceOnHostRange$inboundSchema: z.ZodType; export declare function serviceOnHostRangeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=serviceonhostrange.d.ts.map