import { type ValueIr } from "../../../core/domain/facts/value-ir.js"; import type { SyntaxNode } from "../../../infrastructure/parser/ts-utils.js"; import type { PythonImportIndex } from "../index/python/imports.js"; /** * Folds a Python expression to the value IR of project-map:CTR-007. A dotted * read rooted at an imported name is a configuration locator, never its value: * resolving a key to a per-environment value is the linker's work. */ export declare function foldPythonValue(node: SyntaxNode | null, imports: PythonImportIndex): ValueIr;