import { MediaMatcher } from '@angular/cdk/layout'; import { OnInit, EventEmitter } from '@angular/core'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs/internal/Observable'; import { AppStates } from '../../application-controller/store/states'; export declare class LayoutComponent implements OnInit { private readonly store; appletName: string; menuItems: any; groupMenuItems: any; mainPath: string; settingLabel: string; personalizationLabel: string; menuClick: EventEmitter; childMenuClick: EventEmitter; onSideNavChange: boolean; sideNavState$: Observable; linkText: any; mobileQuery: MediaQueryList; dir: string; constructor(media: MediaMatcher, store: Store); ngOnInit(): void; onToggle(toggle: boolean): void; }