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<string, Element>;
    options: SunEditorOptions;
    option: SunEditorOptions;
    [key: string]: any;
}

type Constructor = {
    constructed: Record<string, Element|null>;
    options: SunEditorOptions,
    plugins: Plugin[],
    pluginCallButtons: Record<string, Element>,
    _icons: Record<string, string>
};

declare function _Context(element: Element, cons: Constructor, options: SunEditorOptions): Context;

export default _Context;

