// Stolen from https://github.com/hexenq/kuroshiro-analyzer-kuromoji/pull/7 // Credit goes to https://github.com/ALOHACREPES345 declare class KuromojiAnalyzer { constructor(dictPath?: { dictPath: string }); init(): Promise; parse(str: string): Promise; } declare module 'kuroshiro-analyzer-kuromoji' { export = KuromojiAnalyzer; }