import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * Transport type specifies the underlying communication protocol to the exposed port. */ export declare const TransportType: { readonly Tcp: "tcp"; readonly Udp: "udp"; readonly Tls: "tls"; }; /** * Transport type specifies the underlying communication protocol to the exposed port. */ export type TransportType = OpenEnum; /** @internal */ export declare const TransportType$inboundSchema: z.ZodType; /** @internal */ export declare const TransportType$outboundSchema: z.ZodType; //# sourceMappingURL=transporttype.d.ts.map