export class Operation {
    /**
     *
     * @param {OperationType} operator
     * @param {Array} operands
     * @constructor
     */
    constructor(operator: OperationType, operands: any[]);
    /**
     *
     * @type {OperationType}
     */
    operator: OperationType;
    /**
     *
     * @type {Array}
     */
    operands: any[];
}
//# sourceMappingURL=Operation.d.ts.map