import { TypographyProps } from "@mui/material"; import React from "react"; declare module "@mui/material/Typography" { interface TypographyPropsVariantOverrides { text: true; big: true; smallText: true; title: true; subtitle: true; header: true; } } export interface GradientTextProps extends TypographyProps { component?: React.ElementType; startColor?: string; endColor?: string; }