UNPKG

@mui/base

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

16 lines (15 loc) 477 B
import { PolymorphicComponent } from '../utils'; import { TablePaginationTypeMap } from './TablePagination.types'; /** * A pagination for tables. * * Demos: * * - [Table Pagination](https://mui.com/base-ui/react-table-pagination/) * * API: * * - [TablePagination API](https://mui.com/base-ui/react-table-pagination/components-api/#table-pagination) */ declare const TablePagination: PolymorphicComponent<TablePaginationTypeMap<{}, "td">>; export { TablePagination };