import type { OhPConfig } from "../types.js"; /** 步骤 1-2: 生成 auth.json + settings.json */ export declare function writeProviderEnv(agentDir: string, config: OhPConfig): void; /** 步骤 3: 生成 models.json(自定义端点) */ export declare function writeModelConfig(agentDir: string, config: OhPConfig): void; /** 步骤 4: 生成 keybindings.json */ export declare function writeKeybindings(agentDir: string, config: OhPConfig): void; /** 步骤 5: 生成 AGENTS.md */ export declare function writeAgents(agentDir: string, config: OhPConfig): void; /** 步骤 6: 复制扩展 */ export declare function writeExtensions(agentDir: string, config: OhPConfig): void; /** 步骤 7: 复制提示词 */ export declare function writePrompts(agentDir: string, config: OhPConfig): void; /** 步骤 8: 同步 skills */ export declare function writeSkills(agentDir: string, _config: OhPConfig): void; /** 步骤 9: 复制主题 */ export declare function writeTheme(agentDir: string, config: OhPConfig): void;