/** * Remove Command * Interactively remove installed skills */ /** * Agent configuration (imported from main CLI) */ interface AgentConfig { name: string; displayName: string; projectDir: string; globalDir: string; } /** * Remove command options */ export interface RemoveOptions { /** Remove from global installation */ global?: boolean; /** Target specific agent only */ agent?: string; /** Skip confirmation prompt */ yes?: boolean; /** Remove all installed skills */ all?: boolean; } /** * Remove installed skills * * @param skillNames - Optional list of skill names to remove * @param options - Remove options * @param agentConfigs - Agent configurations */ export declare function removeCommand(skillNames: string[] | undefined, options: RemoveOptions | undefined, agentConfigs: Record): Promise; /** * Register the remove command with commander */ export declare function registerRemoveCommand(program: any, agentConfigs: Record): void; export {}; //# sourceMappingURL=remove.d.ts.map