import { type BindingScope } from './BindingScope.js'; import { type bindingTypeValues } from './BindingType.js'; import { type DynamicValueBuilder } from './DynamicValueBuilder.js'; import { type ScopedBinding } from './ScopedBinding.js'; export interface DynamicValueBinding extends ScopedBinding { readonly value: DynamicValueBuilder; } //# sourceMappingURL=DynamicValueBinding.d.ts.map