import type { ToolProgressEvent } from '@wrongstack/core/types'; import type { CommandPlan, DetectedWorkspace, LanguagePackageOutcome, LanguageRunResult } from './types.js'; export interface ExecuteLanguagePlanOptions { projectRoot: string; workspace: DetectedWorkspace; plan: CommandPlan; signal: AbortSignal; } export declare function executeLanguagePlan(options: ExecuteLanguagePlanOptions): AsyncGenerator; export interface ExecutePackagePlanOptions { projectRoot: string; workspace: DetectedWorkspace; plan: CommandPlan; packages: readonly string[]; signal: AbortSignal; } export declare function executePackagePlan(options: ExecutePackagePlanOptions): AsyncGenerator; //# sourceMappingURL=execute.d.ts.map