import type { Value } from "../value/index.js"; export type Env = EnvNull | EnvCons; export type EnvNull = { "@kind": "EnvNull"; }; export declare function EnvNull(): EnvNull; export type EnvCons = { "@kind": "EnvCons"; name: string; value: Value; rest: Env; }; export declare function EnvCons(name: string, value: Value, rest: Env): EnvCons; //# sourceMappingURL=Env.d.ts.map