import { default as React } from 'react';
export interface EditorProps {
    initialContent?: string;
    onChange?: (content: string) => void;
    readOnly?: boolean;
    className?: string;
}
declare const RichEditor: React.FC<EditorProps>;
export default RichEditor;
