import { ASTBase } from 'miniscript-core'; export declare class Stack { currentStack: ASTBase[]; constructor(); get(offset: number): ASTBase; depth(): number; lookup(cb: Function): boolean; push(o: ASTBase): Stack; pop(): Stack; }