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