import { BaseMenuItem, BaseToolboxAction } from '@onepoint-yap/dashboard'; export declare const adminFeatureKey = "@yap/admin"; export interface AdminState { highlightedMenu: string; menus: BaseMenuItem[]; menuOpen: boolean; actions: BaseToolboxAction[]; subActions: BaseToolboxAction[]; panelOpen: boolean; componentType: string | null; } export declare const initialAdminState: AdminState; export declare const adminReducer: import("@ngrx/store").ActionReducer;