import { WidgetManager, WidgetModel, Widget } from './widget-protocol'; export declare class WidgetManagerImpl implements WidgetManager { protected readonly widgets: Widget[]; protected readonly widgetModels: WidgetModel[]; protected readonly widgetModelsForConfig: { [id: string]: WidgetModel; }; protected prioritized: Map[]>; constructor(widgets: Widget[], widgetModels: WidgetModel[], widgetModelsForConfig: { [id: string]: WidgetModel; }); render(area: string): Promise; get(area: string): Promise[]>; } //# sourceMappingURL=widget-manager.d.ts.map