import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AskIndexRequest = { /** * The natural language question to ask the index */ question: string; /** * Reserved for future use - conversation thread identifier */ threadId?: string | null | undefined; }; /** @internal */ export declare const AskIndexRequest$inboundSchema: z.ZodType; /** @internal */ export type AskIndexRequest$Outbound = { question: string; thread_id?: string | null | undefined; }; /** @internal */ export declare const AskIndexRequest$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 AskIndexRequest$ { /** @deprecated use `AskIndexRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AskIndexRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AskIndexRequest$Outbound` instead. */ type Outbound = AskIndexRequest$Outbound; } export declare function askIndexRequestToJSON(askIndexRequest: AskIndexRequest): string; export declare function askIndexRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=askindexrequest.d.ts.map