UNPKG

@mui/x-data-grid

Version:

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

9 lines 416 B
import * as React from 'react'; import { Theme, SxProps } from '@mui/system'; export type GridOverlayProps = React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; }; declare const GridOverlay: React.ForwardRefExoticComponent<GridOverlayProps> | React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; } & React.RefAttributes<HTMLDivElement>>; export { GridOverlay };