12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
import * as React from 'react';
|
|
export interface TypographyProps {
|
|
id?: string;
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
children?: React.ReactNode;
|
|
['aria-label']?: string;
|
|
}
|
|
declare const ExportTypography: React.FC<TypographyProps>;
|
|
export default ExportTypography;
|