import type { DictationKeyword } from '../lib/api-client/config'; interface Preferences { vimMode: boolean; compactThread: boolean; fontFamily: string; smartEdges: boolean; threadNavigatorRail: boolean; releaseToSend: boolean; fullWidthContent: boolean; notificationsEnabled: boolean; dictationKeywords: DictationKeyword[]; dictationExcludedProjectKeywords: string[]; dictationSmartFormatting: boolean; } export declare function usePreferences(): { preferences: Preferences; updatePreferences: (updates: Partial) => void; }; export type { Preferences }; //# sourceMappingURL=usePreferences.d.ts.map