import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IndexTextRequest, IndexTextRequest$Outbound } from "./indextextrequest.js"; export type BatchIndexTextRequest = { documents: Array; }; /** @internal */ export declare const BatchIndexTextRequest$inboundSchema: z.ZodType; /** @internal */ export type BatchIndexTextRequest$Outbound = { documents: Array; }; /** @internal */ export declare const BatchIndexTextRequest$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 BatchIndexTextRequest$ { /** @deprecated use `BatchIndexTextRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `BatchIndexTextRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `BatchIndexTextRequest$Outbound` instead. */ type Outbound = BatchIndexTextRequest$Outbound; } export declare function batchIndexTextRequestToJSON(batchIndexTextRequest: BatchIndexTextRequest): string; export declare function batchIndexTextRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=batchindextextrequest.d.ts.map