export declare function stemmer(word: string): string; const stemmerInstance = new stem(); export function stemmer(word) { return stemmerInstance.stemWord(word); }