import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Region } from "./region.js"; export type PingEndpoints = { port: number; host: string; region: Region; }; /** @internal */ export declare const PingEndpoints$inboundSchema: z.ZodType; export declare function pingEndpointsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pingendpoints.d.ts.map