import { OnInit } from '@angular/core'; import { Store } from '@ngrx/store'; export declare class WindowTaskBarComponent implements OnInit { store$: Store; windows$: import("rxjs").Observable<{ title?: string; icon?: string; width?: string; height?: string; x?: string; y?: string; resizable: boolean; draggable: boolean; fullscreen: boolean; minimized: boolean; id: string; }[]>; expand: boolean; constructor(store$: Store); ngOnInit(): void; }