import { OnInit, OnDestroy } from '@angular/core'; import { Feature, FeatureService } from '../shared'; import { FeatureListComponent } from './feature-list.component'; export declare class FeatureListBindingDirective implements OnInit, OnDestroy { private featureService; private component; private features$$; private focusedFeature$$; private initialized; onFocus(feature: Feature): void; onSelect(feature: Feature): void; constructor(component: FeatureListComponent, featureService: FeatureService); ngOnInit(): void; ngOnDestroy(): void; private handleFeaturesChange(features); }