import { Command } from "commander"; interface InstallOptions { dryRun: boolean; } export declare function installFeatures(cwd: string, repos: string[], options: InstallOptions): void; export declare const installAgentFeaturesCommand: Command; export {};