import * as React from 'react'; import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities'; import { ITheme, IStyle } from 'office-ui-fabric-react/lib/Styling'; export interface IMarkdownParagraphProps { styles?: IStyleFunctionOrObject; theme?: ITheme; } export interface IMarkdownParagraphStyles { root: IStyle; } export interface IMarkdownParagraphStyleProps { theme: ITheme; isTodo: boolean; } export declare const MarkdownParagraph: React.FunctionComponent;