/** * Remove a value (first found) from an array. */ export declare function removeValueFromArray(arr: T[], value: T): void;