import { OnInit } from '@angular/core'; import { UglaService } from '../../ugla.service'; /** * Toolbar * * @example * */ export declare class ToolbarComponent implements OnInit { private ugla; /** * Set title */ title: string; hasBreadcrumb: boolean; /** * Receives the theme's name */ theme: string; classes: string; /** * Receives the component's name * @param ugla: UglaService */ constructor(ugla: UglaService); ngOnInit(): void; }