import { AstNodeVisitorInterface } from '../../common/nodeVisitorInterface';
import { AbstractNode } from '../../common/AbstractNode';
export declare abstract class VisitableAbstractNode extends AbstractNode {
abstract visit(visitor: AstNodeVisitorInterface, ...args: any[]): any;
}