/**
 * Removes value from an array.
 * Presence of value (and its position in an array) is determined via `Array.prototype.indexOf`
 * @param {Array} array
 * @param {*} value
 * @return {Array} original array
 */
export declare const removeFromArray: <T>(array: T[], value: T) => T[];
//# sourceMappingURL=removeFromArray.d.ts.map