import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Index = { /** * The unique identifier of the index */ indexId: string; /** * The name of the index */ indexName: string; /** * The number of records in the index */ recordCount: number; /** * The status of the index */ status?: string | undefined; }; /** @internal */ export declare const Index$inboundSchema: z.ZodType; /** @internal */ export type Index$Outbound = { index_id: string; index_name: string; record_count: number; status?: string | undefined; }; /** @internal */ export declare const Index$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Index$ { /** @deprecated use `Index$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Index$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Index$Outbound` instead. */ type Outbound = Index$Outbound; } export declare function indexToJSON(index: Index): string; export declare function indexFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=indext.d.ts.map