import { AbstractNode } from "../../../common/AbstractNode";
import { NodePositionInterface } from "../../../common/NodePositionInterface";
import { EelNode } from "./EelNode";
export declare class OperationNode extends EelNode {
    leftHand: AbstractNode;
    operation: string;
    rightHand: AbstractNode;
    constructor(leftHand: AbstractNode, operation: string, rightHand: AbstractNode, position: NodePositionInterface);
    toString(intend?: number): string;
}
