12 lines
358 B
TypeScript
12 lines
358 B
TypeScript
import OriginTypography from './Typography';
|
|
import Text from './Text';
|
|
import Title from './Title';
|
|
import Paragraph from './Paragraph';
|
|
export declare type TypographyProps = typeof OriginTypography & {
|
|
Text: typeof Text;
|
|
Title: typeof Title;
|
|
Paragraph: typeof Paragraph;
|
|
};
|
|
declare const Typography: TypographyProps;
|
|
export default Typography;
|