import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EipService = { capabilities?: number | undefined; serviceName?: string | undefined; supportsTcp?: boolean | undefined; supportsUdp?: boolean | undefined; }; /** @internal */ export declare const EipService$inboundSchema: z.ZodType; export declare function eipServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eipservice.d.ts.map