/** * Checks whether the text matches the query. Both are split into words. * Returns true if for each query word there is a word in the text which * begins with it. Case-insensitive. */ export declare function matchesSearchQuery(query: string, text: string): boolean; //# sourceMappingURL=matchesSearchQuery.d.ts.map