import { TypographyProps } from '@mui/material'; export interface ITypography extends TypographyProps { type?: "h1" | "h2" | "h3" | "h4" | "h5" | "s1" | "s2" | "s3" | "s4" | "s5"; weight?: "normal" | "medium" | "bold"; } export declare function Typography(props: ITypography): import("react/jsx-runtime").JSX.Element; export default Typography;