/**
 * Remove an entry from a string array if it's there, does nothing if it isn't there.
 */
export default function removeEntry<K>(stringArray: K[], stringToRemove: K): void;
