/** * CLI adapter for RecCall core engine */ import { Command } from 'commander'; import type { ICoreEngine } from '../../core/interfaces.js'; import type { ContextEngine } from '../../core/context-engine.js'; export declare class CLIAdapter { private engine; private contextEngine?; constructor(engine: ICoreEngine, contextEngine?: ContextEngine); initialize(): Promise; createProgram(): Command; /** * Handle errors in CLI-specific way */ private handleError; } //# sourceMappingURL=index.d.ts.map