import * as React from 'react'; import { MUIStyledCommonProps } from '@mui/system'; import { Theme } from '@mui/material/styles'; import { InternalStandardProps as StandardProps } from '@mui/material'; import { PopperProps } from '@mui/material/Popper'; export interface GridPanelClasses { /** Styles applied to the root element. */ panel: string; /** Styles applied to the paper element. */ paper: string; } export interface GridPanelProps extends StandardProps & PopperProps, 'children'> { children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial; open: boolean; } export declare const gridPanelClasses: Record; declare const GridPanel: React.ForwardRefExoticComponent & React.RefAttributes>; export { GridPanel };