/** * Returns the least common multiple (lcm) of a list of numbers. * The result is always positive even if one or more of the arguments are negative. * `lcm(0, x)` and `lcm(x, 0)` returns `0`. * @param values - A list of numbers. * * @example * ```typescript * lcm(8, 36); // => 72 * lcm(-4, 6, 8); // => 24 * lcm(12, 8, 32); // => 96 * lcm(0, 12); // => 0 * lcm(12, 0, 8); // => 0 * ``` */ declare const lcm: (...values: number[]) => number; export default lcm; //# sourceMappingURL=lcm.d.ts.map