import * as L from './lang.js'; import { Result } from './result.js'; export declare function runtimeError(message: string, s?: L.Exp, hint?: string): Result; export declare function tryMatch(v: L.Value, p: L.Pat): L.Env | undefined; export declare class Store { private counter; private readonly store; constructor(); add(value: L.Value): number; get(key: number): L.Value | undefined; has(key: number): boolean; } export declare const store: Store; //# sourceMappingURL=runtime.d.ts.map