/// import { TablePaginationProps } from './types'; declare const TablePagination: { (props: TablePaginationProps): JSX.Element; defaultProps: { rowsPerPageOptions: (number | { label: string; value: number; })[]; labelRowsPerPage: string; }; }; export default TablePagination;