material-react-table
Version:
A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.
11 lines (10 loc) • 325 B
TypeScript
import { FC } from 'react';
import { MRT_Header, MRT_TableInstance } from '..';
import type { TableCellProps } from '@mui/material/TableCell';
interface Props {
header: MRT_Header;
table: MRT_TableInstance;
tableCellProps?: TableCellProps;
}
export declare const MRT_TableHeadCellSortLabel: FC<Props>;
export {};