import { InjectionToken } from '@angular/core'; export interface NgeMonacoContribution { activate(): void | Promise; deactivate?(): void | Promise; } export declare const NGE_MONACO_CONTRIBUTION: InjectionToken;