import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Index, Index$Outbound } from "./index.js"; export type GetIndexResponse = { index: Index; }; /** @internal */ export declare const GetIndexResponse$inboundSchema: z.ZodType; /** @internal */ export type GetIndexResponse$Outbound = { index: Index$Outbound; }; /** @internal */ export declare const GetIndexResponse$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 GetIndexResponse$ { /** @deprecated use `GetIndexResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetIndexResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetIndexResponse$Outbound` instead. */ type Outbound = GetIndexResponse$Outbound; } export declare function getIndexResponseToJSON(getIndexResponse: GetIndexResponse): string; export declare function getIndexResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getindexresponse.d.ts.map