export declare class Sprachsynthese {
    sprachSynthese: SpeechSynthesis;
    voices: SpeechSynthesisVoice[];
    constructor();
    getSynthese(): SpeechSynthesis;
    getVoices(): SpeechSynthesisVoice[];
}
