import type { CommandModule } from "yargs"; export interface InstallArgv { yes: boolean; force: boolean; "dry-run": boolean; dryRun?: boolean; silent?: boolean; quiet?: boolean; verbose?: boolean; "cache-dir"?: string; cacheDir?: string; all?: boolean; } /** * The `doc-detective install` command group. Registers subcommands and * a bare `install` form that prints help. The existing `install-agents` * command keeps its top-level registration as a permanent hidden alias * (configured in cli.ts). */ export declare const installCommand: CommandModule<{}, InstallArgv>; //# sourceMappingURL=installCommand.d.ts.map