import { STContext } from "../../STContext"; import { STObject } from "../../STObject"; import { ASTNode } from "./ASTNode"; export declare class AbstractSyntaxTree { readonly root: ASTNode; constructor(root: ASTNode); runWith(context: STContext): STObject; run(): STObject; toString(): string; }