import { CSSProperties } from "react"; declare module "@mui/material/styles" { interface TypographyVariants { gatebase: CSSProperties; code: CSSProperties; } interface TypographyVariantsOptions { gatebase?: CSSProperties; code?: CSSProperties; } } declare module "@mui/material/Typography" { interface TypographyPropsVariantOverrides { gatebase: true; code: true; } } export {};