import * as React from 'react'; import { IConfigEditor } from './config'; export interface ICKEditorProps { value?: string; config?: IConfigEditor; style?: string; isFocus?: boolean; Inited?: Function; onChange?: Function; onBlur?: Function; onKey?: Function; onPaste?: Function; callApiFileUpload?: Function; getListUser?: Function; } export declare class CKEditor extends React.Component { static isScriptLoaded: boolean; static customImaged: boolean; editorUrl: string; editorInstance: any; unmounting: boolean; constructor(props: any); static defaultProps: { config: IConfigEditor; style: string; }; componentDidMount(): void; componentDidUpdate(prevProps: any): void; componentWillUnmount(): void; private onLoad; private attachEventHandlers; private attachEventHandler; private destroyEditor; render(): JSX.Element; }