import { default as React } from 'react'; export interface CustomEditorProps { editorRef?: React.RefObject; data: string; handleEditorReady: (editor: any) => void; onError?: (error: Error) => void; config?: any; [key: string]: any; } export declare const CustomEditor: React.ForwardRefExoticComponent & React.RefAttributes>; export default CustomEditor;