type ArrayElement = ArrayType[number]; /** * Removes one or more elements from an array * * @example * arrEject([1, 2, 3, 4], 2); * => [1, 3, 4] * * @param a - An array * @param elements - A single element or an array of elements to eject * @param mutate - Whether to mutate the original array */ export declare const arrEject: (a: unknown[], elements: ArrayElement | ArrayElement[], mutate?: boolean) => Type; export { arrEject as arrayEject, arrEject as arrayDelete }; //# sourceMappingURL=arrEject.d.ts.map