import TypographyLib, { TypographyProps as LibTypographyProps } from "@mui/material/Typography"; import { FC } from "react"; export type TypographyProps = LibTypographyProps; const Typography: FC = (props) => { return ; }; export default Typography;