declare function toBeNotEmptyArray(expected: any, message?: string, _isSoft?: boolean): void;
declare function toBeEmptyArray(expected: any, message?: string, _isSoft?: boolean): void;
declare function arrayIncludesMembers(expected: any, actual: any, message?: string, _isSoft?: boolean): void;
declare function arrayNotIncludesMembers(expected: any, actual: any, message?: string, _isSoft?: boolean): void;
declare function arrayHasLengthAbove(array: any, length: any, message?: string, _isSoft?: boolean): void;
export { toBeEmptyArray, toBeNotEmptyArray, arrayIncludesMembers, arrayNotIncludesMembers, arrayHasLengthAbove };
