/** * @param {{ * index: number * name?: string * site?: Site * }} props * @returns {UplcVar} */ export function makeUplcVar(props: { index: number; name?: string; site?: Site; }): UplcVar; /** * @param {FlatReader} r * @returns {UplcVar} */ export function decodeUplcVarFromFlat(r: FlatReader): UplcVar; /** * @import { Site } from "@helios-lang/compiler-utils" * @import { * CekContext, * CekStack, * CekStateChange, * FlatReader, * FlatWriter, * UplcTerm, * UplcValue, * UplcVar * } from "../index.js" */ export const UPLC_VAR_TAG: 0; import type { Site } from "@helios-lang/compiler-utils"; import type { UplcVar } from "../index.js"; import type { FlatReader } from "../index.js"; //# sourceMappingURL=UplcVar.d.ts.map