import { OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export declare class ToolbarComponent implements OnInit { availableColors: ChipColor[]; menuActions: MenuElements[]; constructor(); ngOnInit(): void; setupMenu(): void; mostrarConsola(): void; menuIsEmpty: () => boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface ChipColor { name: string; color: string; backgroundColor: string; } export interface MenuElements { show: boolean; click: () => void; tooltip: string; icon: string; customIcon?: boolean; disabled?: boolean; }