/**
 * 分割数组
 */
declare function splitArray<T = any>(source: T[], size: number): T[][];

export { splitArray };
