import type { Var } from './var.js'; import { LinExpr } from './expr.js'; /** Returns the sum of the given variables, expressions, and constants. */ export declare function sum(...items: (Var | LinExpr | number)[]): LinExpr; //# sourceMappingURL=helpers.d.ts.map