@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
8 lines (7 loc) • 427 B
TypeScript
import * as React from 'react';
import { Theme } from '@mui/material/styles';
import { MUIStyledCommonProps } from '@mui/system';
export interface GridPanelWrapperProps extends React.PropsWithChildren<React.HTMLAttributes<HTMLDivElement>>, MUIStyledCommonProps<Theme> {
}
declare const GridPanelWrapper: React.ForwardRefExoticComponent<GridPanelWrapperProps & React.RefAttributes<HTMLDivElement>>;
export { GridPanelWrapper };