import BaseTypography from './typography'; import Text from './text'; import Title from './title'; import Paragraph from './paragraph'; import Numeral from './numeral'; export type TypographyType = typeof BaseTypography & { Text: typeof Text; Title: typeof Title; Paragraph: typeof Paragraph; Numeral: typeof Numeral; }; declare const Typography: TypographyType; export * from './interface'; export default Typography; export { Typography, Text as TypographyText, Title, Text, Paragraph, Numeral, };