import { allAgents } from './agents'; import { McpStrategy } from './types'; export { allAgents }; /** * Applies ruler configurations for all supported AI agents. * @param projectRoot Root directory of the project */ /** * Applies ruler configurations for selected AI agents. * @param projectRoot Root directory of the project * @param includedAgents Optional list of agent name filters (case-insensitive substrings) */ export declare function applyAllAgentConfigs(projectRoot: string, includedAgents?: string[], configPath?: string, cliMcpEnabled?: boolean, cliMcpStrategy?: McpStrategy, cliGitignoreEnabled?: boolean, verbose?: boolean, dryRun?: boolean, localOnly?: boolean, nested?: boolean, backup?: boolean, skillsEnabled?: boolean, cliGitignoreLocal?: boolean, subagentsEnabled?: boolean): Promise;