import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PortmapV2Entry } from "./portmapv2entry.js"; import { PortmapV3Entry } from "./portmapv3entry.js"; export type Portmap = { v2Entries?: Array | null | undefined; v3Entries?: Array | null | undefined; }; /** @internal */ export declare const Portmap$inboundSchema: z.ZodType; export declare function portmapFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=portmap.d.ts.map