/** * Subtracts all the numbers passed in as arguments from the first number passed in. * * @since 1.0.0 * * @param {...number} numbers - The numbers to subtract from the first number. * * @returns {number} - The result of subtracting all the numbers from the first number. * * @example * * subtract(20, 5, 3, 2); * // => 10 * * subtract(10, 5, 2, 3); * // => 0 */ declare const subtract: (...numbers: number[]) => number; export default subtract;