import { default as React } from 'react';
import { ComplexTextEditorStyles } from '../theme';
type MarkdownEditorProps = {
    value: string;
    onChange: (value: string) => void;
    minRows?: number;
    styles?: ComplexTextEditorStyles;
};
declare const MarkdownEditor: React.FC<MarkdownEditorProps>;
export default MarkdownEditor;
//# sourceMappingURL=index.d.ts.map