import BoxLib, { BoxProps as LibBoxProps } from "@mui/material/Box"; import { FC, forwardRef } from "react"; export type BoxProps = LibBoxProps; const Box: FC = forwardRef((props, ref) => { return ; }); Box.displayName = "Box"; export default Box;