import React from 'react'; import type { DefaultProps } from '../../types'; import type { TypographyProps } from '@mui/material/Typography'; export type ITypographyProps = TypographyProps & DefaultProps; declare const Typography: ({ children, margin, padding, style, sx, variant, ...otherProps }: ITypographyProps) => React.JSX.Element; export default Typography;