import type { PiLikeContext } from "../pi-context.js"; import { runChorus } from "../chorus.js"; export interface BatchCommandContext extends PiLikeContext { runBatchCase?: typeof runChorus; } export declare function handleBatch(ctx: BatchCommandContext, rawArgs: string): Promise;