/**
 * Check if array is Empty
 * @param arg Array to check
 * @returns `true` if source array is empty
 */
export declare function isEmpty(arg: Array<unknown>): boolean;
