import { OnInit, OnDestroy } from '@angular/core'; import { MessageService, LanguageService } from '../../core'; import { Context, ContextService } from '../shared'; 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(context); }