import { OnInit, ViewContainerRef } from '@angular/core'; import { Title } from '@angular/platform-browser'; import { ThfToolbarBaseComponent } from '@totvs/thf-core/components/thf-toolbar-base'; /** * @extends ThfToolbarBaseComponent * * @description * * O título da página web assumirá o valor da propriedade `t-title`. * * @example * * * * */ export declare class ThfToolbarComponent extends ThfToolbarBaseComponent implements OnInit { private titleService; private viewRef; notificationMenu: boolean; userMenu: boolean; parentRef: any; constructor(titleService: Title, viewRef: ViewContainerRef); ngOnInit(): void; setTitle(newTitle: string): void; showNotificationMenu(): void; showUserMenu(): void; }