import { FC } from '../types'; import { PropsWithChildren } from 'react'; import './style'; import { CSSProperties, MouseEvent } from 'react'; export interface IglooTypographyProps { level: 'h1' | 'h2' | 'h3a' | 'h3b' | 'h4' | 'h5' | 'number1' | 'number2' | 'body1' | 'body2' | 'body3' | 'caption1' | 'caption2' | 'caption3' | 'status' | 'link'; wrapElement?: 'span' | 'div'; className?: string; style?: CSSProperties; title?: string; onClick?: (e: MouseEvent) => void; } declare const IglooTypography: FC>; export default IglooTypography;