import { NavigationState } from './navigation.reducer'; import { SideBarState } from './side-bar.reducer'; import { ContentState } from './content.reducer'; import { ScreenState } from './screen.reducer'; export interface LayoutState { navigation: NavigationState; sideBar: SideBarState; content: ContentState; screen: ScreenState; } export declare const layoutInitialState: LayoutState; export declare function layoutReducer(state: LayoutState, action: any): LayoutState;