import { DashboardInterface, WidgetInterface, DashboardService, AppInterface } from "..";
export declare class DashboardAdapterContext {
    private service;
    private app;
    constructor(service: DashboardService, app: AppInterface);
    setLoading(value: boolean): void;
    setDashboards(dashboards: Array<DashboardInterface>): void;
    updateDashboard(id: string, dashboard: DashboardInterface): void;
    setWidgets(widgets: Array<WidgetInterface>): void;
    updateWidget(id: string, widget: WidgetInterface): void;
}
