/**
 * 判断是否数组
 *
 * @param {object} obj 对象
 * @return {boolean}
 */
declare const isArray: (arg: any) => arg is any[];
export default isArray;
