import { OnInit, OnDestroy } from '@angular/core'; import { MessageService, LanguageService } from '@ximple/igo2-core'; import { Context } from '../shared/context.interface'; import { ContextService } from '../shared/context.service'; import { ContextEditComponent } from './context-edit.component'; export declare class ContextEditBindingDirective implements OnInit, OnDestroy { private contextService; private messageService; private languageService; private component; private editedContext$$; onEdit(context: Context): void; constructor(component: ContextEditComponent, contextService: ContextService, messageService: MessageService, languageService: LanguageService); ngOnInit(): void; ngOnDestroy(): void; private handleEditedContextChange; }