import { AstNode } from "../AstNode";
import { Expression } from "./Expression";
export declare class UnaryExpression extends Expression {
    type: string;
    code: any;
    operator: string;
    argument: AstNode;
    prefix: boolean;
    suffix: boolean;
    constructor(currentToken: any);
}
