import React from 'react';
import { IBaseElement } from '../types';
export interface IMarkdown extends IBaseElement {
    value?: string;
    render?: (element: string, className: string, style: string, ...args: any[]) => string;
    elementClassNames?: Record<string, string>;
    elementStyles?: Record<string, string>;
    onAdded?: () => any;
    onUpdate?: () => any;
    onStart?: () => any;
}
declare const Markdown: React.FC<IMarkdown>;
export default Markdown;
