import { ViewColumn } from '../../../view-column'; import { AppStates } from '../states'; export declare const selectViewColState: (state: AppStates) => import("../states/view-col.states").ViewColumnState; export declare const selectFirstColComp: (state: AppStates) => ViewColumn; export declare const selectSecondColComp: (state: AppStates) => ViewColumn; export declare const selectViewCols: (state: AppStates) => ViewColumn[]; export declare const selectBreadCrumbs: (state: AppStates) => ViewColumn[]; export declare const selectLeftDrawer: (state: AppStates) => ViewColumn[]; export declare const selectRightDrawer: (state: AppStates) => ViewColumn[]; export declare const selectSingleColumn: (state: AppStates) => boolean; export declare const selectLocalState: (state: AppStates, index: number) => any; export declare const selectPrevIndex: (state: AppStates) => number; export declare const selectPrevLocalState: import("@ngrx/store").MemoizedSelector>;