import TaskManager from '../TaskManager.js'; import { ExecutionContext } from '../TaskManager.js'; /** * Converts the list of operations into a structured execution plan. * * This function focuses only on grouping operations by execution group. * Dependency resolution (dependencies + dependents) is now handled separately * in `createDependencyMap()`. * * Each `ExecutionContext` includes: * - `group`: The logical group name * - `ops`: Array of operations with their `id` only */ export declare function createExecutionPlan(this: TaskManager): ExecutionContext[];