import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Document, Document$Outbound } from "./document.js"; import { Pagination, Pagination$Outbound } from "./pagination.js"; export type DocumentList = { pagination: Pagination; documents: Array; }; /** @internal */ export declare const DocumentList$inboundSchema: z.ZodType; /** @internal */ export type DocumentList$Outbound = { pagination: Pagination$Outbound; documents: Array; }; /** @internal */ export declare const DocumentList$outboundSchema: z.ZodType; export declare function documentListToJSON(documentList: DocumentList): string; export declare function documentListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=documentlist.d.ts.map