interface StopWords {
    stopWordCount: number;
    stopWords: string[];
    wordCount: number;
}
declare const stopwords: (content: string, lang?: string) => StopWords;
export default stopwords;
