/** * Claude Code configuration setup * * Deploys .claude/ directory and CLAUDE.md to new project */ export interface ClaudeConfigOptions { projectPath: string; projectName: string; } /** * Deploy Claude Code configuration to project * * This includes: * - .claude/ directory with agents, commands, MCP servers * - CLAUDE.md context file */ export declare function deployClaudeConfig(options: ClaudeConfigOptions): Promise; /** * Check if Claude Code is available */ export declare function isClaudeCodeAvailable(): boolean; /** * Deploy Claude Code configuration directly to GitHub repository * * This commits .claude/ and CLAUDE.md directly to the repository * before local cloning, ensuring they are always present */ export declare function deployClaudeConfigToGitHub(owner: string, repo: string, projectName: string, token: string): Promise; /** * Verify Claude Code configuration */ export declare function verifyClaudeConfig(projectPath: string): Promise<{ claudeDirExists: boolean; claudeMdExists: boolean; agentsCount: number; commandsCount: number; }>; //# sourceMappingURL=claude-config.d.ts.map