UNPKG

@mui/x-data-grid

Version:

The community edition of the data grid component (MUI X).

10 lines (9 loc) 405 B
import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; export type GridFooterContainerProps = React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; }; declare const GridFooterContainer: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme> | undefined; } & React.RefAttributes<HTMLDivElement>>; export { GridFooterContainer };