/** * Configure Claude Code by copying from templates * * The claude templates include: * - commands/ - Slash commands * - agents/ - Multi-agent pipeline configurations * - hooks/ - Context injection hooks * - settings.json - Hook and tool configurations */ export declare function configureClaude(cwd: string): Promise; /** * Configure Claude Code agents for Multi-Agent Pipeline * * @deprecated Agents are now included in the main .claude directory copy. * This function is kept for backwards compatibility but does nothing. */ export declare function configureClaudeAgents(_cwd: string): Promise; /** * Configure Claude Code hooks for context injection * * @deprecated Hooks are now included in the main .claude directory copy. * This function is kept for backwards compatibility but does nothing. */ export declare function configureClaudeHooks(_cwd: string): Promise; /** * Configure Claude Code with full Multi-Agent Pipeline support * * This is now equivalent to just calling configureClaude since the entire * .claude directory is copied at once. */ export declare function configureClaudeFull(cwd: string): Promise; //# sourceMappingURL=claude.d.ts.map