/**
 * @author WMXPY
 * @namespace Operation
 * @description Assignment
 */
import * as EST from "estree";
import { Variable } from "../variable/variable";
export declare const getAssignmentOperation: (symbol: EST.AssignmentOperator) => ((variable: Variable<any>, value: any) => any) | null;
