/** * 生成指定个数的随机字符串 * @param n * @param str * @returns */ declare function randomStr(n: number, str?: string): string; export default randomStr;