import { FC } from 'react'; /** * Text properties */ export interface BodyTextPropsStrict { /** Adds one or more classnames for an element */ className?: string; /** Set the wrapping element's tagname */ el?: any; /** Set style `display: inline;` to nest Text components */ inline?: boolean; /** Set style to italic */ italic?: boolean; /** Headline Font size */ size?: 'large' | 'medium' | 'small' | 'xsmall'; /** Deemphasized text */ subdued?: boolean; /** Bold */ bold?: boolean; } export interface BodyTextProps extends BodyTextPropsStrict { [propName: string]: any; } export declare const BodyText: FC;