import type { PhonemeToken } from '../interfaces'; import { DecomposingAnalyzer } from './DecomposingAnalyzer'; /** * Text analyzer implementation for the Korean language. * Decomposes Korean characters into their constituent phonemes. */ export declare class KoreanAnalyzer extends DecomposingAnalyzer { private readonly CHOSEONG; private readonly JUNGSEONG; private readonly JONGSEONG; protected decompose(char: string): PhonemeToken[]; }