import { TypographyProps as MuiTypographyProps } from '@mui/material'; export interface TypographyProps extends MuiTypographyProps { } /** * * @param TypographyProps * @returns */ declare const Typography: ({ children, ...rest }: TypographyProps) => import("react/jsx-runtime").JSX.Element; export default Typography;