import { Command } from 'commander';
import { registerProfileCommands } from './profile';
import { registerTaskCommands } from './task';
import { registerConfigCommands } from './config';
import { registerToolCommands } from './tools';
/**
 * Register all CLI commands with the program
 * @param program Commander program instance
 * @returns Program with all commands registered
 */
export declare function registerAllCommands(program: Command): Command;
export { registerProfileCommands, registerTaskCommands, registerConfigCommands, registerToolCommands };
