/**
 * Finds strings in an array that are similar to the given string.
 * @param string The target string to match against
 * @param array Array of candidate strings to search
 * @returns Array of similar strings from the input array
 */
declare const findAlternatives: (string: string, array: string[]) => string[];
export default findAlternatives;
