import { WindowActions } from './window.actions'; export interface WindowState { title?: string; icon?: string; width?: string; height?: string; x?: string; y?: string; resizable: boolean; draggable: boolean; fullscreen: boolean; minimized: boolean; } export declare const WINDOW_INIT_STATE: WindowState; export interface WindowsState { [windowId: string]: WindowState; } export declare function windowReducer(state: WindowState, action: WindowActions): WindowState; export declare function windowsReducer(state: WindowsState, action: WindowActions): WindowsState;