import { type AIAgentTarget, type AiCodingAssistant } from "@igniteui/cli-core"; import { CommandModule } from "yargs"; export declare function configureMCP(assistants: AiCodingAssistant[]): void; export declare function configureSkills(agents: AIAgentTarget[], framework: string, verbose?: boolean): void; export declare function configureInstructions(agents: AIAgentTarget[], framework: string, verbose?: boolean): void; type AIAgentOption = AIAgentTarget | "none"; type AIAssistantOption = AiCodingAssistant | "none"; interface ConfigureOptions { agents?: AIAgentOption[]; assistants?: AIAssistantOption[]; skills?: boolean; verbose?: boolean; } export declare function configure(framework: string, options?: ConfigureOptions): Promise<{ agents: AIAgentTarget[]; assistants: AiCodingAssistant[]; }>; declare const command: CommandModule; export default command;