/// import { GridRenderCellParams } from 'mui-ultra/x-data-grid'; import { Theme } from 'mui-ultra/material/styles'; import { SxProps } from 'mui-ultra/system'; interface GridFooterCellProps extends GridRenderCellParams { sx?: SxProps; } declare const GridFooterCell: (props: GridFooterCellProps) => JSX.Element; export { GridFooterCell };