import { TableProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableRowProps, TableSortLabelProps } from '@mui/material'; export type CustomTableProps = TableProps; export type CustomTableBodyProps = TableBodyProps; export type CustomTableCellProps = TableCellProps; export type CustomTableContainerProps = TableContainerProps; export type CustomTableFooterProps = TableFooterProps; export type CustomTableHeadProps = TableHeadProps; export type CustomTablePaginationProps = TablePaginationProps; export type CustomTableRowProps = TableRowProps; export type CustomTableSortLabelProps = TableSortLabelProps;