/** * Whether `text` matches a user-typed filter, case-insensitively, ignoring the filter's * surrounding whitespace. An empty (or whitespace-only) filter matches everything. */ export declare function matchesFilterText(text: string, filterText: string): boolean;