import * as React from 'react'; import { CKEditor, ICKEditorProps } from './ckeditor'; export { IConfigEditor } from './config'; interface IContentEditorProps extends ICKEditorProps { value?: string; readOnly?: boolean; className?: string; } export declare class ContentEditor extends React.Component { ref_CKEditor: CKEditor; private onChange; private onBlur; private onKey; onSetFocus: () => void; render(): JSX.Element; }