export type FocusArea = 'input' | 'sessions' | 'git' | 'viewer' | 'rightPanel' | null; interface FocusState { currentFocus: FocusArea; sessionIndex: number; gitFileIndex: number; setFocus: (area: FocusArea) => void; setSessionIndex: (index: number) => void; setGitFileIndex: (index: number) => void; resetGitFileIndex: () => void; resetSessionIndex: () => void; } export declare const useFocusStore: import("zustand").UseBoundStore>; export {}; //# sourceMappingURL=focusStore.d.ts.map