import { CLIEngine } from './core/CLIEngine'; export { CLIEngine } from './core/CLIEngine'; export { CommandRegistry } from './core/CommandRegistry'; export { ArgumentParser } from './core/ArgumentParser'; export * from './types'; export { startCommand } from './commands/start'; export { stopCommand } from './commands/stop'; export { codeCommand } from './commands/code'; export declare const defaultCLIConfig: { name: string; version: string; description: string; commandDiscovery: { commandDirs: string[]; modulePatterns: string[]; autoLoad: boolean; watchForChanges: boolean; }; defaultCommand: string; }; export declare const cliEngine: CLIEngine; export declare function executeCommand(argv?: string[]): Promise;