import * as z from "zod/v3"; import { DocumentDefinition, DocumentDefinition$Outbound } from "./documentdefinition.js"; /** * Describes the request body of the /indexdocument API call */ export type IndexDocumentRequest = { /** * Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done. */ version?: number | undefined; /** * Indexable document structure */ document: DocumentDefinition; }; /** @internal */ export type IndexDocumentRequest$Outbound = { version?: number | undefined; document: DocumentDefinition$Outbound; }; /** @internal */ export declare const IndexDocumentRequest$outboundSchema: z.ZodType; export declare function indexDocumentRequestToJSON(indexDocumentRequest: IndexDocumentRequest): string; //# sourceMappingURL=indexdocumentrequest.d.ts.map