import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { VespaSchemaResponse } from "./vespaschemaresponse.js"; export type VespaSearchIndexInfoResponse = { type: "vespa"; k8sCluster: string; k8sNamespace: string; vespaInstanceName: string; schemas: Array; }; /** @internal */ export declare const VespaSearchIndexInfoResponse$inboundSchema: z.ZodType; export declare function vespaSearchIndexInfoResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vespasearchindexinforesponse.d.ts.map