import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ElasticSearchSystemInfoVer } from "./elasticsearchsysteminfover.js"; export type ElasticSearchSystemInfo = { clusterUuid?: string | undefined; name?: string | undefined; tagline?: string | undefined; version?: ElasticSearchSystemInfoVer | undefined; }; /** @internal */ export declare const ElasticSearchSystemInfo$inboundSchema: z.ZodType; export declare function elasticSearchSystemInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=elasticsearchsysteminfo.d.ts.map