/** * LAYER-BASED EXECUTION - USAGE EXAMPLES * ====================================== * * Demonstrates ModelGroup-based execution with sequential and parallel strategies */ import type { WorkflowConfig } from "../types/index.js"; declare const simpleParallelWorkflow: WorkflowConfig; declare const fastThenPremiumWorkflow: WorkflowConfig; declare const fallbackChainWorkflow: WorkflowConfig; declare const mixedStrategyWorkflow: WorkflowConfig; declare const costOptimizedWorkflow: WorkflowConfig; export { simpleParallelWorkflow, fastThenPremiumWorkflow, fallbackChainWorkflow, mixedStrategyWorkflow, costOptimizedWorkflow, };