import type { Settings } from '../app-settings-type.js'; type AnimationStyle = 'rainbow' | 'wave' | 'pulse' | 'dots' | 'breathe' | 'static' | 'cycle'; export declare function useLiveSettingsState({ getSettings, titleController, chime, confirmExit, }: { getSettings?: (() => Settings) | undefined; titleController?: { setEnabled: (on: boolean) => void; setModel: (model: string) => void; } | undefined; chime: boolean; confirmExit: boolean; }): { liveSettings: Settings | undefined; liveStatuslineMode: Settings['statuslineMode']; liveAnimationStyle: AnimationStyle; liveThinkingWord: string; chimeRef: React.MutableRefObject; confirmExitRef: React.MutableRefObject; }; export {}; //# sourceMappingURL=use-live-settings-state.d.ts.map