1 | import Link from './Link';
|
2 | import Paragraph from './Paragraph';
|
3 | import Text from './Text';
|
4 | import Title from './Title';
|
5 | import OriginTypography from './Typography';
|
6 | export type TypographyProps = typeof OriginTypography & {
|
7 | Text: typeof Text;
|
8 | Link: typeof Link;
|
9 | Title: typeof Title;
|
10 | Paragraph: typeof Paragraph;
|
11 | };
|
12 | declare const Typography: TypographyProps;
|
13 | export default Typography;
|