// to avoid mistakenly treating d.ts as js by ESLint. /* eslint-disable */ declare class KuromojiAnalyzer { constructor(dictPath?: { dictPath: string }); init(): Promise; parse(str: string): Promise; } declare module "@sglkc/kuroshiro-analyzer-kuromoji" { export = KuromojiAnalyzer; }