import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ElasticSearchSystemInfoVer = { buildDate?: string | undefined; buildFlavor?: string | undefined; buildHash?: string | undefined; buildSnapshot?: boolean | undefined; buildType?: string | undefined; luceneVersion?: string | undefined; minIdxCompatVer?: string | undefined; minWireCompatVer?: string | undefined; number?: string | undefined; }; /** @internal */ export declare const ElasticSearchSystemInfoVer$inboundSchema: z.ZodType; export declare function elasticSearchSystemInfoVerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=elasticsearchsysteminfover.d.ts.map