UNPKG

320 BTypeScriptView Raw
1import * as React from 'react';
2export interface TypographyProps {
3 id?: string;
4 prefixCls?: string;
5 className?: string;
6 style?: React.CSSProperties;
7 children?: React.ReactNode;
8 ['aria-label']?: string;
9}
10declare const ExportTypography: React.FC<TypographyProps>;
11export default ExportTypography;