import type { Budget } from "../budget.js"; import { type SandboxClosure, type SandboxObject } from "../values.js"; export type ObjectArrayGlobals = { Object: SandboxObject; Array: SandboxClosure; String: SandboxClosure; Number: SandboxClosure; Boolean: SandboxClosure; }; export declare function createObjectArrayGlobals(options: { budget: Budget; }): ObjectArrayGlobals;