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