import { hasExistingAgentInstructions, type AgentConfig } from '../utils/agent.js';
export interface AgentSetupSelection {
    instructionFilePath: 'CLAUDE.md' | 'AGENTS.md';
    agents: AgentConfig[];
}
export declare function resolveAgentSetup(root: string, interactive: boolean): Promise<AgentSetupSelection>;
export { hasExistingAgentInstructions };
export declare function injectAgentBlock(root: string, filePath: string): void;
export declare function setupMcpConfig(root: string, selectedAgents: AgentConfig[]): void;
