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; elementStyles?: Record; onAdded?: () => any; onUpdate?: () => any; onStart?: () => any; } declare const Markdown: React.FC; export default Markdown;