import { FC } from 'react'; /** * Text properties */ export interface TextPropsStrict { /** Bold */ bold?: boolean; /** Adds one or more classnames for an element */ className?: string; /** Set the wrapping element's tagname */ el?: any; /** *Deprecated* Use `bold` prop instead */ headline?: boolean; /** Set style `display: inline;` to nest Text components */ inline?: boolean; /** Set style to italic */ italic?: boolean; /** Font size, 1 for smallest, 6 for largest */ size?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | '1' | '2' | '3' | '4' | '5' | '6' | '7'; /** Deemphasized text */ subdued?: boolean; } export interface TextProps extends TextPropsStrict { [propName: string]: any; } export declare const Text: FC;