import { BehaviorSubject, Observable } from 'rxjs'; import { ActionPanelConfig } from '../models'; export declare class ActionPanelService { panelState: BehaviorSubject<{ [id: string]: ActionPanelConfig; } | null>; setActionPanel(actionPanels: { [id: string]: ActionPanelConfig; }): void; get panelActions$(): Observable<{ [id: string]: ActionPanelConfig; }>; }