import { Typography as InnerTypography } from './typography'; import { Title } from './title'; import { SubTitle } from './sub-title'; import { Paragraph } from './paragraph'; declare type _Typography = typeof InnerTypography; interface Typography extends _Typography { Title: typeof Title; SubTitle: typeof SubTitle; Paragraph: typeof Paragraph; } declare const Typography: Typography; export default Typography;