import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ElasticSearchErrorMessage } from "./elasticsearcherrormessage.js"; import { ElasticSearchResultsNodeInfo } from "./elasticsearchresultsnodeinfo.js"; import { ElasticSearchSystemInfo } from "./elasticsearchsysteminfo.js"; export type ElasticSearch = { errorMessage?: ElasticSearchErrorMessage | undefined; resultsNodeInfo?: ElasticSearchResultsNodeInfo | undefined; systemInfo?: ElasticSearchSystemInfo | undefined; }; /** @internal */ export declare const ElasticSearch$inboundSchema: z.ZodType; export declare function elasticSearchFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=elasticsearch.d.ts.map