import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { SxProps, SystemProps } from '@mui/system'; import { GridBaseProps } from '@mui/system/Unstable_Grid'; import { Theme } from '../styles'; export type Grid2Slot = 'root'; export interface Grid2TypeMap

{ props: P & GridBaseProps & { sx?: SxProps; } & SystemProps; defaultComponent: D; } export type Grid2Props = OverrideProps, D>;