import { ModuleWithProviders } from '@angular/core'; import { NgxEditorJSModuleConfig } from './types/config'; /** * The `@tinynodes/ngx-editorjs` module provides the directive, service and components to use [EditorJS](http://editorjs.io) * within Angular and Material. * * To use import the module `NgxEditorJSModule.forRoot()` into the root of your application. * The `forRoot` method takes an optional `NgxEditorJSModuleConfig` config, this will provide a * default instance. */ export declare class NgxEditorJSModule { constructor(parentModule: NgxEditorJSModule); /** * 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; }