import type { StopwordProvider } from "./strategies.js"; /** * Frozen map of bundled stopword text by two-letter language key. */ export declare const bundledStopwordTexts: Readonly>; /** * Readonly alias for the bundled stopword text map. */ export declare const STOPWORDS: Readonly>; /** * Returns the bundled stopword text for a language code. */ export declare function getStopwordText(language: string): string; /** * Loads a stopword set for the requested language. */ export declare function loadStopwords(language?: string): Set; /** * Creates a stopword set with optional additions, removals, or replacement. */ export declare function createStopwordSet(language?: string, options?: { add?: Iterable; remove?: Iterable; replace?: Iterable; }): Set; /** * Creates a static stopword provider from raw text or iterable stopword values. */ export declare function createStaticStopwordProvider(input: Record>): StopwordProvider; /** * Two-letter language keys available in the bundled stopword pack. */ export declare const supportedLanguages: string[]; //# sourceMappingURL=stopwords.d.ts.map