import { Core } from "../core"; import { Env } from "../env"; import { Value } from "../value"; export declare class RecordClosure { env: Env; ret: Core; constructor(env: Env, ret: Core); apply(args: Array<{ name: string; arg: Value; }>): Value; }