import type { RcConfig } from "./types.js"; import type { DataStore } from "./store/interface.js"; export declare function readRc(): RcConfig; export declare function writeRc(rc: RcConfig): void; export declare function getStore(): DataStore; export declare function isCcSwitchGuiRunning(): boolean; export declare function stopCcSwitchGui(): string | null; export declare function launchCcSwitchGui(appPath: string): void;