import { ChangeDetectorRef, OnDestroy } from '@angular/core'; import { Subscription } from 'rxjs'; import { MLayoutService } from './layout.service'; export declare class MLayoutComponent implements OnDestroy { private cdr; private layoutService; subscription: Subscription; showHeader: boolean; sideMenuVisible: boolean; menuVisible: boolean; constructor(cdr: ChangeDetectorRef, layoutService: MLayoutService); ngOnDestroy(): void; }