import React from 'react'; import { type ContextStore } from './Context'; import type { MDEditorProps } from './Types'; export interface RefMDEditor extends ContextStore { } type PreviewComponent = React.ComponentType; type TextAreaComponent = React.ComponentType; export declare function createMDEditor(options: { MarkdownPreview: TMarkdownPreview; TextArea: TTextArea; }): React.ForwardRefExoticComponent> & { Markdown: TMarkdownPreview; }; export {};