import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const TransportProtocol: { readonly Unknown: ""; readonly Tcp: "tcp"; readonly Udp: "udp"; readonly Icmp: "icmp"; readonly Quic: "quic"; }; export type TransportProtocol = OpenEnum; export type MatchedService = { port?: number | undefined; protocol?: string | undefined; transportProtocol?: TransportProtocol | undefined; }; /** @internal */ export declare const TransportProtocol$inboundSchema: z.ZodType; /** @internal */ export declare const MatchedService$inboundSchema: z.ZodType; export declare function matchedServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=matchedservice.d.ts.map