/**
 * @author WMXPY
 * @namespace Operation_BinaryExpression
 * @description Operators
 */
import * as EST from "estree";
export declare const getBinaryOperation: (symbol: EST.BinaryOperator) => ((left: any, right: any) => any) | null;
