export type PreferencesTab = 'editor' | 'notifications' | 'automation' | 'reasoning' | 'dictation' | 'recipes' | 'references' | 'plugins'; interface SettingsState { isExpanded: boolean; preferencesTab: PreferencesTab | null; toggleSidebar: () => void; expandSidebar: () => void; collapseSidebar: () => void; openPreferences: (tab?: PreferencesTab) => void; closePreferences: () => void; } export declare const useSettingsStore: import("zustand").UseBoundStore>; export {}; //# sourceMappingURL=settingsStore.d.ts.map