import Title from './Title'; import Text from './Text'; interface TypographyProps { Text: typeof Text; Title: typeof Title; } const Typography: TypographyProps = { Title, Text, }; export default Typography;