export default class ASTNode {
    isNode: boolean;
    static isNodeConstructor: boolean;
    toString(): string;
}
export interface ASTNodeConstructor {
    isNodeConstructor: boolean;
}
