import { SunEditorOptions } from './../options.d'; import { Plugin } from '../plugins/Plugin'; declare interface EditorElement { originElement: Element; topArea: Element; relative: Element; toolbar: Element; resizingBar: Element; navigation: Element; charWrapper: Element; charCounter: Element; editorArea: Element; wysiwygFrame: Element; wysiwyg: Element; code: Element; placeholder: Element; loading: Element; lineBreaker: Element; resizeBackground: Element; } export interface Context { element: EditorElement; tool: Record; options: SunEditorOptions; option: SunEditorOptions; [key: string]: any; } type Constructor = { constructed: Record; options: SunEditorOptions, plugins: Plugin[], pluginCallButtons: Record, _icons: Record }; declare function _Context(element: Element, cons: Constructor, options: SunEditorOptions): Context; export default _Context;