import { FC, PropsWithChildren } from 'react'; import { VisualizationType } from '../types/visualization'; interface DashboardContextType { dashboardItems: string[]; setDashboardItems: (items: string[]) => void; handleClosePanel: (visualizationType: VisualizationType) => void; isMultiPanelView: boolean; } export declare const DashboardProvider: FC; export declare const useDashboard: () => DashboardContextType; export {}; //# sourceMappingURL=DashboardContext.d.ts.map