export interface CodexDesktopProject { root: string; label: string; active: boolean; available: boolean; } export interface LoadedCodexDesktopProjects { found: boolean; path: string; projects: CodexDesktopProject[]; } export declare function deriveCodexDesktopGlobalStatePath(): string; export declare function loadCodexDesktopProjects(globalStatePath: string): Promise;