import type { Table } from "@tanstack/react-table"; import React from "react"; interface PaginationProps { readonly table: Table; readonly itemsPerPage?: number[]; readonly totalItems: number; readonly loading: boolean; readonly onPageChange: () => void; } export declare function Pagination({ table, itemsPerPage, totalItems, loading, onPageChange, }: PaginationProps): React.JSX.Element; export {};