import * as React from 'react'; import type { SxProps } from '@mui/system'; import type { Theme } from '@mui/material/styles'; export interface GridRootProps extends React.HTMLAttributes { /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; sidePanel?: React.ReactNode; } declare const MemoizedGridRoot: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent>; export { MemoizedGridRoot as GridRoot };