import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeEndpoint = { host: string; name: string; port: number; protocol: string; url?: string | undefined; }; /** @internal */ export declare const ComputeEndpoint$inboundSchema: z.ZodType; /** @internal */ export type ComputeEndpoint$Outbound = { host: string; name: string; port: number; protocol: string; url?: string | undefined; }; /** @internal */ export declare const ComputeEndpoint$outboundSchema: z.ZodType; export declare function computeEndpointToJSON(computeEndpoint: ComputeEndpoint): string; export declare function computeEndpointFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeendpoint.d.ts.map