import { Sound, SoundGeneration } from '../unit';
export declare const syllableCompositions: ((x: SoundGeneration) => SoundGeneration)[];
export declare class TonalSoundGenerator {
    private isStopFinal;
    private genChecked;
    generate(letters: string[]): Sound[][];
}
