import { Sprachsynthese } from "../../shared/sprachausgabe/sprachsynthese";
export declare class Sprachauswahl {
    sprachSynthese: Sprachsynthese;
    voice: SpeechSynthesisVoice;
    rate: number;
    volume: number;
    pitch: number;
    constructor(sprachsynthese: Sprachsynthese);
    protected initDefaultStimme(): void;
    getRate(): number;
    getVolume(): number;
    getPitch(): number;
    getVoice(): SpeechSynthesisVoice;
    getVoiceList(): SpeechSynthesisVoice[];
    setChoosenVoice(voice: SpeechSynthesisVoice): void;
    setVolume(volume: number): void;
    setRate(rate: number): void;
    setPitch(pitch: number): void;
}
