import { ChangeDetectorRef, OnDestroy, TemplateRef } from '@angular/core'; import { Subscription } from 'rxjs'; import { MLayoutService } from './layout.service'; import { IBreadcrumb } from './layout.type'; export declare class MLayoutHeaderComponent implements OnDestroy { cdr: ChangeDetectorRef; private layoutService; mTools: string | TemplateRef; mBreadcrumbs: string | TemplateRef; breads: IBreadcrumb[]; subscription: Subscription; sideMenuVisible: boolean; constructor(cdr: ChangeDetectorRef, layoutService: MLayoutService); toggleSideMenu(): void; ngOnDestroy(): void; }