import { MavSelectionState } from '../../mav-selection/shared/store/state'; import { SidenavState } from '../../toolbar/shared/store/state'; export interface ApplicationState { ui: SidenavState; mavSelection: MavSelectionState; } export declare const INITIAL_APPLICATION_STATE: ApplicationState;