import { Lambda } from "../reducer/lambda/index.js"; import { SquiggleSerializationVisitor } from "../serialization/squiggle.js"; import { BaseValue } from "./BaseValue.js"; import { Value } from "./index.js"; import { Indexable } from "./mixins.js"; export declare class VLambda extends BaseValue<"Lambda", number> implements Indexable { value: Lambda; readonly type = "Lambda"; get publicName(): string; constructor(value: Lambda); valueToString(): string; get(key: Value): import("./VArray.js").VArray; serializePayload(visit: SquiggleSerializationVisitor): number; } export declare function vLambda(v: Lambda): VLambda; //# sourceMappingURL=vLambda.d.ts.map