/**
 * 产生随机整数
 */
declare const randomInt: (min: number, max: number) => number;
export default randomInt;
