import { ForwardRefExoticComponent } from 'react';
import Typography, { TypographyProps } from './typography';
import './styles/index.scss';
interface TypographyComponent extends ForwardRefExoticComponent<TypographyProps> {
    H1: typeof Typography;
    H2: typeof Typography;
    H3: typeof Typography;
    H4: typeof Typography;
    H5: typeof Typography;
    H6: typeof Typography;
    Text: typeof Typography;
}
declare const ExpandedTypography: TypographyComponent;
export { TypographyProps };
export default ExpandedTypography;
