import { Config } from "./types.js"; export declare const defaultConfig: Config; export declare const CONFIG_DIR: string; export declare const CONVERSATIONS_DIR: string; export declare const AGENTS_DIR: string; export declare const SUB_AGENTS_DIR: string; export declare const SKILLS_DIR: string; export declare const TOOLS_DIR: string; export declare const CONFIG_FILE: string; /** * 确保配置目录存在,并在首次初始化时写入默认子 Agent 文件 */ export declare function ensureConfigDir(): void; export declare function readConfig(): Config; export declare function saveConfig(config: Config): void; //# sourceMappingURL=config.d.ts.map