import { type ConstantValueBinding } from '../../binding/models/ConstantValueBinding.js'; import { type DynamicValueBinding } from '../../binding/models/DynamicValueBinding.js'; import { type Factory } from '../../binding/models/Factory.js'; import { type FactoryBinding } from '../../binding/models/FactoryBinding.js'; import { type BaseBindingNode } from './BaseBindingNode.js'; export type LeafBindingNode = BaseBindingNode | DynamicValueBinding | (TActivated extends Factory ? FactoryBinding : never)>; //# sourceMappingURL=LeafBindingNode.d.ts.map