@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
8 lines • 356 B
TypeScript
import { GridRenderCellParams } from '@mui/x-data-grid';
import { Theme } from '@mui/material/styles';
import { SxProps } from '@mui/system';
interface GridFooterCellProps extends GridRenderCellParams {
sx?: SxProps<Theme>;
}
declare function GridFooterCell(props: GridFooterCellProps): import("react/jsx-runtime").JSX.Element;
export { GridFooterCell };