/** * Numbers manipulation module * * @module numbers * * @example * Import number utilities: * ```typescript * import { getRandomInt } from '@vvlad1973/utils'; * ``` */ /** * Generates a random integer between min and max (inclusive) * * @param min - Minimum value (inclusive) * @param max - Maximum value (inclusive) * @returns Random integer between min and max * @throws {Error} If min is greater than max or if values are not finite numbers * * @example * ```typescript * const random = getRandomInt(1, 10); * // returns a number between 1 and 10 (inclusive) * ``` */ export declare function getRandomInt(min: number, max: number): number;