import { OnInit, OnDestroy } from '@angular/core'; import { Tool, ToolService } from '../shared'; import { ToolbarComponent } from './toolbar.component'; export declare class ToolbarBindingDirective implements OnInit, OnDestroy { private toolService; private component; private selectedTool$$; onSelect(tool: Tool): void; constructor(component: ToolbarComponent, toolService: ToolService); ngOnInit(): void; ngOnDestroy(): void; }