import { type RunMeta } from '../../core/workflow/run/run-meta.js'; import { type TaskState } from '../../infra/task/index.js'; export interface TellableRunningTask { readonly task: TaskState; readonly runSlug: string; readonly worktreePath: string; readonly meta: RunMeta; } export interface TellableRunningTaskInspection { readonly tasks: readonly TellableRunningTask[]; readonly excluded: readonly string[]; } export declare function resolveTellableRunningTask(projectCwd: string, runSlug: string): TellableRunningTask; export declare function inspectTellableRunningTasks(projectCwd: string): TellableRunningTaskInspection; /** Return only tasks that can receive an intervention. */ export declare function listTellableRunningTasks(projectCwd: string): TellableRunningTask[]; export declare function issueTellableRunningTask(projectCwd: string, runSlug: string, content: string): Promise<{ readonly instructionId: number; readonly target: TellableRunningTask; }>; //# sourceMappingURL=liveIntervention.d.ts.map