interface UnifiedPaginationProps { currentPage: number; totalPages: number; onPageChange?: (page: number) => void; className?: string; /** * Write `?page=` into the URL on every change (default true, the historical * behaviour). Set false when the CALLER owns the URL — a surface whose whole * filter state is one schema would otherwise get two writers racing on it. */ syncUrl?: boolean; /** * Keep the row's height when there is only one page, instead of rendering * nothing. Stops a one-page result from shifting the content above it. */ reserveSpace?: boolean; } export declare function UnifiedPagination({ currentPage, totalPages, onPageChange, className, syncUrl, reserveSpace, }: UnifiedPaginationProps): import("react").JSX.Element | null; export {}; //# sourceMappingURL=unified-pagination.d.ts.map