import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateIndexResponse = { /** * The ID of the created index */ indexId?: string | undefined; }; /** @internal */ export declare const CreateIndexResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateIndexResponse$Outbound = { index_id?: string | undefined; }; /** @internal */ export declare const CreateIndexResponse$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 CreateIndexResponse$ { /** @deprecated use `CreateIndexResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateIndexResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateIndexResponse$Outbound` instead. */ type Outbound = CreateIndexResponse$Outbound; } export declare function createIndexResponseToJSON(createIndexResponse: CreateIndexResponse): string; export declare function createIndexResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createindexresponse.d.ts.map