/** * Batch command — manage async batch LLM jobs * * valora batch list * valora batch status * valora batch results [--wait] * valora batch cancel */ import type { CommandAdapter } from '../command-adapter.interface.js'; import '../../llm/providers/anthropic.provider.js'; import '../../llm/providers/openai.provider.js'; import '../../llm/providers/google.provider.js'; export declare function configureBatchCommand(program: CommandAdapter): void; //# sourceMappingURL=batch.command.d.ts.map