import * as React from 'react'; import { StandardProps } from '../../common'; export declare type HeadlineSize = 'small' | 'medium'; export declare type HeadlineLevel = keyof typeof styledHeadlines; export interface HeadlineProps extends StandardProps { /** * Represent 5 levels of headings (1-5) * Default is 3 */ level?: HeadlineLevel; /** * When specified headline will have muted text color */ subheader?: boolean; /** * The text of the headline. */ children?: React.ReactNode; } export interface StyledHeadlineProps { size: HeadlineSize; level: HeadlineLevel; theme?: any; subheader?: boolean; } /** * A map of styled components for each headline level. */ declare const styledHeadlines: { 1: any; 2: any; 3: any; 4: any; 5: any; }; /** * Headline component with styles for all headline levels. */ export declare const Headline: React.SFC; export {};