export interface IterationContext {
  currentIteration?: string;
  parentIterations?: string[];
}

export interface Workflow {
  variables?: Record<string, any>;
  objectsForIteration?: Record<string, any>;
  phases?: any[];
}

// Core system types 