export default splitArray; /** * 定长分割数组 * @param {*} arr 传入的数组 * @param {*} length 分割长度 */ declare function splitArray(arr: any, length: any): any[];