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