/** * ai-eng install command * * Installs OpenCode/Claude assets to project or global location. * Cleans previously installed ai-eng artifacts before writing. */ import { type InstallScope } from "./toolkit-path"; import type { InstallFlags } from "./types"; export declare function detectInstallationScope(projectDir: string): "project" | "global" | null; export declare function resolveInstallScope(flags: InstallFlags, projectDir: string): InstallScope; declare function runInstaller(flags: InstallFlags): Promise; export type { InstallFlags, InstallPlatform } from "./types"; export { runInstaller };