/** * Addition without floating point errors * @param {number[]} numbers Numbers to add * @returns number Sum of the numbers * @example addition(0.1, 0.2); // 0.3 */ export declare const addition: (...numbers: number[]) => number;