/** * Removes the first occurance of `item` in `array`. * * @group Utils * @category Array * @exampe * ``` * without([1, 2, 3, 4, 5], 4) * // [1, 2, 3, 5] * ``` */ export declare function without(array: T[], item: T): T[]; //# sourceMappingURL=Array.d.ts.map