/** * Pagination clamps shared by the View REST surface (ADR-0012) and * `ListEntriesUseCase`. Pure functions; no I/O. * * Defaults / cap are runtime-internal — manifests don't see them. * `MAX_LIMIT` is the upper bound on what any caller can ask for in a * single round-trip; `View.spec.limit` may further narrow this on a * per-View basis (`clampShow` honours both). */ export declare const DEFAULT_LIMIT = 50; export declare const MAX_LIMIT = 500; export declare function clampLimit(limit: number | undefined): number; export declare function clampShow(show: number | undefined, viewLimit: number | undefined): number; export declare function clampPage(page: number | undefined): number; //# sourceMappingURL=Pagination.d.ts.map