import type ESTree from 'estree';
import BaseJSNode from './BaseJSNode.js';
export default class UnaryExpression extends BaseJSNode<ESTree.UnaryExpression> {
    private static operatorMap;
    private static isValidOperator;
    run(): any;
}
