import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DocumentChunk, DocumentChunk$Outbound } from "./documentchunk.js"; import { Pagination, Pagination$Outbound } from "./pagination.js"; export type DocumentChunkList = { pagination: Pagination; chunks: Array; }; /** @internal */ export declare const DocumentChunkList$inboundSchema: z.ZodType; /** @internal */ export type DocumentChunkList$Outbound = { pagination: Pagination$Outbound; chunks: Array; }; /** @internal */ export declare const DocumentChunkList$outboundSchema: z.ZodType; export declare function documentChunkListToJSON(documentChunkList: DocumentChunkList): string; export declare function documentChunkListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=documentchunklist.d.ts.map