import { GVGroupPanelState, MavSelectionState } from './state'; /** * feature selector for self - MavSelectionState */ export declare const selectSelf: import("@ngrx/store").MemoizedSelector>; /** * Returns the state of the graphic-variable-panel * @param state Store state of MavSelection * @returns true if graphic-variable-panel is open */ export declare function isGVPanelOpen(state: MavSelectionState): boolean; /** * selector for isGVPanelOpen */ export declare const isGVPanelOpenSelector: import("@ngrx/store").MemoizedSelector>; /** * Gets open graphic-variable-groups * @param state instance of MavSelectionState * @returns opened gvgroups */ export declare function getOpenGVGroupPanels(state: MavSelectionState): GVGroupPanelState[]; /** * selector for getOpenGVGroupPanels */ export declare const getOpenGVGroupPanelsSelector: import("@ngrx/store").MemoizedSelector>; /** * For slicing the value from state that determines if the advance option is enabled or not. */ export declare const getAdvancedEnabled: (state: MavSelectionState) => boolean; /** * getAdvancedEnabledSelector for getting the value if the advance option is enabled or not. */ export declare const getAdvancedEnabledSelector: import("@ngrx/store").MemoizedSelector>;