import { EnvFound, Environment, EnvLib } from "./types"; export declare function createEnv(parent: Environment | null, lib?: EnvLib | null): Environment; export declare function findInEnv(env: Environment, id: string, topOnly?: boolean): EnvFound | void; export declare function setInEnv(env: Environment, id: string, value: V): void;