import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Pagination = { nextCursor?: string | null | undefined; totalCount: number; }; /** @internal */ export declare const Pagination$inboundSchema: z.ZodType; /** @internal */ export type Pagination$Outbound = { next_cursor?: string | null | undefined; total_count: number; }; /** @internal */ export declare const Pagination$outboundSchema: z.ZodType; export declare function paginationToJSON(pagination: Pagination): string; export declare function paginationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pagination.d.ts.map