interface DashboardStore { /** Active tab in the data section */ activeTab: string; setActiveTab: (tab: string) => void; /** Whether the stats cards section is expanded */ statsExpanded: boolean; toggleStats: () => void; progress: number; setProgress: (value: number) => void; sliderValue: number[]; setSliderValue: (value: number[]) => void; switchEnabled: boolean; toggleSwitch: () => void; } export declare const useDashboardStore: import("zustand").UseBoundStore>; export {};