export declare class Synthese {
  sprachSynthese: SpeechSynthesis;
  voices: SpeechSynthesisVoice[];
  constructor();
  getVoices(): SpeechSynthesisVoice[];
  cancel(): void;
}
