/**
 * Check if the given object is an array.
 * @param obj any
 * @returns boolean
 */
export default function isArray(obj: any): boolean;
