import { BinaryOp } from "../../Joinpoints.js";
/**
 * Simplifies assignments of the type `a += b` into the equivalent expression `a = a + b`
 * @param $complexAssignment - The expression to simplify
 */
export default function SimplifyAssignment($complexAssignment: BinaryOp): void;
//# sourceMappingURL=SimplifyAssignment.d.ts.map