import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ElasticSearchResultsNodeInfoClusterCombinedInfo } from "./elasticsearchresultsnodeinfoclustercombinedinfo.js"; import { ElasticSearchResultsNodeInfoNodes } from "./elasticsearchresultsnodeinfonodes.js"; export type ElasticSearchResultsNodeInfo = { clusterCombinedInfo?: ElasticSearchResultsNodeInfoClusterCombinedInfo | undefined; nodeInfo?: Array | null | undefined; }; /** @internal */ export declare const ElasticSearchResultsNodeInfo$inboundSchema: z.ZodType; export declare function elasticSearchResultsNodeInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=elasticsearchresultsnodeinfo.d.ts.map