import TaskManager from '../TaskManager.js'; import { Operation, OperationType } from '@nosana/sdk'; /** * Creates a map from operation ID to operation object. * * This is used for fast lookup of operations by ID during validation, * dependency resolution, and execution planning. * * It also ensures that there are no duplicate operation IDs in the job definition. */ export declare function createOperationMap(this: TaskManager): Map>;