import { AgencyNode } from "../../types.js"; import { SourceLocation } from "../../types/base.js"; /** * Turn a plain runtime value into a literal AST node. * * This function must NEVER parse. A string becomes a string literal * containing exactly those characters — that is what stops a filler from * injecting code into a generated program. */ export declare function liftValue(value: unknown, loc: SourceLocation): AgencyNode;