/** * This mixin will implement find and remove * if found the member in an array then remove it * * Created April 27th, 2019 * @author: ywarezk * @version: 5.0.1 * @copyright: Nerdeez Ltd */ /** * given an array we will find an item and remove it * @param arr the array to work on * @param predicate comparing items until this returns true */ export declare function findAndRemove(arr: T[], predicate: (value: T) => boolean): void;