import * as React from 'react'; import './Typography.less'; export type TypographProps = { variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'large' | 'text' | 'medium' | 'small' | 'overline'; type?: 'default' | 'info' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'; weight?: 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; tooltip?: string; className?: string; tooltipIcon?: React.ReactNode; disabled?: boolean; center?: boolean; maxWidth?: string | number | undefined; } & React.HTMLProps; export interface LinkProps extends TypographProps { href?: string; children?: React.ReactNode; active?: boolean; type?: 'default' | 'info' | 'danger'; } export declare const Typography: React.FC & { Link: React.FC>; };