import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor'; import { RuleNode } from 'antlr4ts/tree/RuleNode'; import { TerminalNode } from 'antlr4ts/tree/TerminalNode'; import { ParseTree } from 'antlr4ts/tree/ParseTree'; import { Splv2ParserVisitor } from '@qn-pandora/app-sdk/es/spl'; export declare abstract class Visitor extends AbstractParseTreeVisitor implements Splv2ParserVisitor { getChildren(node: RuleNode): ParseTree[]; typeVisit: (tree: any) => any; visitAllChildren(node: RuleNode): void; getText(node: RuleNode | TerminalNode | ParseTree): string; }