import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Pagination = { totalCount: number; maxPage: number; }; /** @internal */ export declare const Pagination$inboundSchema: z.ZodMiniType; export declare function paginationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pagination.d.ts.map