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