import { EventEmitter, ChangeDetectorRef } from '@angular/core'; import { Tool } from '../shared/tool.interface'; export declare class ToolbarComponent { private cdRef; tools: Tool[]; private _tools; horizontal: boolean; private _horizontal; withTitle: boolean; private _withTitle; withIcon: boolean; private _withIcon; selectedTool: Tool; private _selectedTool; select: EventEmitter; unselect: EventEmitter; readonly withTitleClass: boolean; readonly withIconClass: boolean; readonly horizontalClass: boolean; constructor(cdRef: ChangeDetectorRef); }