import React from 'react'; type TablePaginationProps = { pageCount: number; disablePreviousPage: boolean; disableNextPage: boolean; goToPreviousPage: () => void; goToNextPage: () => void; }; declare const TablePagination: React.FC; export default TablePagination;