import { BoxProps } from '@mui/material';
import { FC } from 'react';

export type GridProps = Omit<BoxProps, 'display'>;
export declare const Grid: FC<BoxProps>;
