import { Context } from "./context.js";
interface EnvContext extends Context<unknown> {
    get current(): typeof globalThis;
}
/**
 * A context that is used to access all DOM related APIs.
 *
 * This can be used to run rvx applications in non browser environments.
 */
export declare const ENV: EnvContext;
export {};
//# sourceMappingURL=env.d.ts.map