import { ImmutableMap } from "../utility/immutable.js"; import { Value } from "../value/index.js"; export type Bindings = ImmutableMap; export declare class Stack { private stack; private constructor(); static make(): Stack; outOfBounds(): never; get(offset: number): Value; push(value: Value): void; size(): number; shrink(newSize: number): void; } //# sourceMappingURL=Stack.d.ts.map