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

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