import * as React from 'react'; import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities'; import { ITheme, IStyle } from 'office-ui-fabric-react/lib/Styling'; /** * The component props. */ export interface IMarkdownHeaderProps { as?: keyof React.ReactHTML; children?: React.ReactNode; className?: string; id?: string; theme?: ITheme; styles?: IStyleFunctionOrObject; } /** * The getStyles props contract. */ export declare type IMarkdownHeaderStyleProps = { as: string; className?: string; }; /** * The styles produced by getStyles. */ export interface IMarkdownHeaderStyles { root: IStyle; } export declare const MarkdownHeader: React.FunctionComponent;