/** * Variables Module * * Provides hierarchical variable management and dynamic variable resolution. */ export { VariableScope, ScopeType, ScopePriority, createScopeChain, createRequestScope } from './VariableScope'; export type { VariableValue, Variables, ScopeChain } from './VariableScope'; export { DynamicVariableResolver } from './DynamicVariableResolver';