declare type PaginationProps = { currentPage: number; totalPages: number; totalItems: number; rowsPerPage: number; onPageChange: (page: number) => void; }; export declare function Pagination({ currentPage, totalPages, totalItems, rowsPerPage, onPageChange }: PaginationProps): import("@emotion/react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=Pagination.d.ts.map