/** * Checks if search field values match the given filter text. * * @param searchFieldValues - Array of strings to search within (e.g., labels, tags, descriptions) * @param filterText - The search text to match against * @returns true if all space-separated parts of filterText are found in at least one searchFieldValue * * @example * matchesFilterText(['Hello World', 'foo'], 'hello') // true * matchesFilterText(['Hello World', 'foo'], 'hello bar') // false * matchesFilterText(['Hello World', 'bar'], 'hello bar') // true * matchesFilterText([], 'test') // false * matchesFilterText(['test'], '') // true (empty filter matches all) */ declare function matchesFilterText(searchFieldValues: string[], filterText: string): boolean; export { matchesFilterText };