/** * Returns a random number between min (inclusive) and max (exclusive). * * If `includeMax` is true, max is inclusive. */ declare function getRandomNumber(min: number, max: number, includeMax?: boolean): number; export { getRandomNumber };