/** * Stop Words Filtering * Common words that should be ignored in search queries */ /** * Default stop words by language */ export declare const DEFAULT_STOP_WORDS: Record; /** * Filter stop words from a query */ export declare function filterStopWords(query: string, stopWords: string[] | Set): string; /** * Get stop words for specific languages */ export declare function getStopWordsForLanguages(languages: string[]): Set; /** * Check if a word is a stop word */ export declare function isStopWord(word: string, stopWords: string[] | Set): boolean; //# sourceMappingURL=stop-words.d.ts.map