import { FC } from 'react'; /** * Text properties */ export interface HeadlinePropsStrict { /** 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?: 'xlarge' | 'large' | 'medium' | 'small'; /** Deemphasized text */ subdued?: boolean; } export interface HeadlineProps extends HeadlinePropsStrict { [propName: string]: any; } export declare const Headline: FC;