import { ModuleWithProviders } from '@angular/core'; import { NgxEditorJSModuleConfig } from '../../types/config'; /** * Factory function to return the EditorJS base class */ export declare function createEditorJSInstance(editorjs: any): any; /** * Base module for the `NgxEditorJSComponent`, `NgxEditorJSDirective` and `NgxEditorJSService`. * All providers for the app are set here, however `FOR_ROOT_OPTIONS_TOKEN` can be set in any * `.forRoot` */ export declare class NgxEditorJSComponentModule { constructor(parentModule: NgxEditorJSComponentModule); /** * Use this method in the root of the application. You can pass an optional configuration * which sets some defaults, or use the provided defaults. * @param config The optional configuration to pass */ static forRoot(config?: NgxEditorJSModuleConfig): ModuleWithProviders; }