import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ListDocument, ListDocument$Outbound } from "./listdocument.js"; export type ListPaginatedDocumentsResponse = { documents: Array; /** * The cursor to use for pagination */ nextCursor?: string | null | undefined; }; /** @internal */ export declare const ListPaginatedDocumentsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPaginatedDocumentsResponse$Outbound = { documents: Array; next_cursor?: string | null | undefined; }; /** @internal */ export declare const ListPaginatedDocumentsResponse$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 ListPaginatedDocumentsResponse$ { /** @deprecated use `ListPaginatedDocumentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListPaginatedDocumentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListPaginatedDocumentsResponse$Outbound` instead. */ type Outbound = ListPaginatedDocumentsResponse$Outbound; } export declare function listPaginatedDocumentsResponseToJSON(listPaginatedDocumentsResponse: ListPaginatedDocumentsResponse): string; export declare function listPaginatedDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpaginateddocumentsresponse.d.ts.map