/** Generates a random number between `min` and `max`. `min` is inclusive and
* `max` is exclusive */
export declare function getRandomInt(
/** `min` is inclusive and `max` is exclusive */
min: number,
/** `max` is exclusive and `min` is inclusive */
max: number): number;