@ackplus/react-tanstack-data-table
Version:
A powerful React data table component built with MUI and TanStack Table
12 lines (11 loc) • 582 B
TypeScript
import { TablePaginationProps } from '@mui/material';
import { ReactNode } from 'react';
export interface DataTablePaginationProps extends Omit<TablePaginationProps, 'count' | 'rowsPerPage' | 'page' | 'onPageChange' | 'onRowsPerPageChange'> {
totalRow: number;
footerFilter?: ReactNode | null;
pagination: {
pageIndex: number;
pageSize: number;
};
}
export declare const DataTablePagination: import("react").MemoExoticComponent<({ footerFilter, pagination, totalRow, ...props }: DataTablePaginationProps) => import("react/jsx-runtime").JSX.Element>;