import { BoxProps } from '@mui/material/Box/Box'; export type SolidGreyBoxProps = { children: React.JSX.Element | React.JSX.Element[]; } & BoxProps; export declare const SolidGreyBox: (props: SolidGreyBoxProps) => import("react/jsx-runtime").JSX.Element;