UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

9 lines 470 B
import * as React from 'react'; import { SxProps, Theme } from '@mui/material/styles'; import type { GridRenderCellParams } from "../../models/params/gridCellParams.js"; interface GridFooterCellProps extends GridRenderCellParams { sx?: SxProps<Theme>; } declare function GridFooterCellRaw(props: GridFooterCellProps): import("react/jsx-runtime").JSX.Element; declare const GridFooterCell: React.MemoExoticComponent<typeof GridFooterCellRaw>; export { GridFooterCell };