import { MessageFunctionType, Result } from "../types"; export interface IsArrayEmptyErrors { TARGET_ARGUMENT_NOT_AN_ARRAY: MessageFunctionType; } export declare const IS_ARRAY_EMPTY_ERRORS: IsArrayEmptyErrors; /** * Tests if an array is empty. * * ### Example * ``` * expect(isArrayEmpty([]).value).toBeTruthy() * ``` * * @param target The array being checked */ export declare function isArrayEmpty(target: any[]): Result;