export declare class TextMatcherUtils { /** * Finds the best matching element from a list of elements based on a target string * @param target The string to match against * @param elements Array of elements to search through * @returns The best matching element or null if no match found */ static findBestMatch(target: string, elements: Element[]): Element | null; }