import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Port = { port?: string | undefined; protocol?: Array | null | undefined; }; /** @internal */ export declare const Port$inboundSchema: z.ZodType; export declare function portFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=port.d.ts.map