import { HTMLAttributes, ElementType, Component, ComponentType } from "react"; import CommonProps from '../util'; export interface TextProps extends HTMLAttributes, CommonProps { delete?: boolean; mark?: boolean; underline?: boolean; strong?: boolean; code?: boolean; component?: ElementType; } export interface TitleProps extends TextProps { } export interface ParagraphProps extends TextProps { } export interface TypographyProps extends TextProps {} export default class Typography extends Component { static H1: ComponentType; static H2: ComponentType; static H3: ComponentType; static H4: ComponentType; static H5: ComponentType; static H6: ComponentType; static Text: ComponentType; static Paragraph: ComponentType; }