/** * 生成指定范围内的整数 * @param {*} min * @param {*} max */ declare const random: (min?: number, max?: number) => number; export default random;