export interface WidgetConfig { id: string; type: WidgetType; title: string; description?: string; gridSize: { xs: number; sm?: number; md?: number; lg?: number; xl?: number; }; enabled: boolean; order: number; config?: Record; } export type WidgetType = "jira-connection" | "github-connection" | "projects-stats" | "quick-actions" | "recent-activity" | "system-health" | "projects-chart" | "trends-chart" | "performance" | "quick-note"; export declare const DEFAULT_WIDGETS: Omit[]; export declare function loadWidgetConfig(): WidgetConfig[]; export declare function saveWidgetConfig(widgets: WidgetConfig[]): void; export declare function reorderWidgets(widgets: WidgetConfig[], activeId: string, overId: string): WidgetConfig[]; //# sourceMappingURL=dashboard-widgets.d.ts.map