/** * Interactive Shell - Full interactive CLI experience with rich UI. * * Usage: * agi # Start interactive shell * agi "initial prompt" # Start with initial prompt * * Features: * - Rich terminal UI with status bar * - Command history * - Streaming responses * - Tool execution display * - Ctrl+C to interrupt */ export interface InteractiveShellOptions { argv: string[]; } /** * Run the fully interactive shell with rich UI. */ export declare function runInteractiveShell(options: InteractiveShellOptions): Promise; //# sourceMappingURL=interactiveShell.d.ts.map