interface SpeechRecognition {
    startRecognition(): void;
    stopRecognition(): void;
    getRecognizedText(): string;
    textToSpeech(text: string): void;
}
export default class Spremic implements SpeechRecognition {
    private recognition;
    private recognizedText;
    private onRecognitionEndCallback;
    constructor();
    private setupRecognition;
    startRecognition(): void;
    stopRecognition(): void;
    getRecognizedText(): string;
    textToSpeech(text: string): void;
    set onRecognitionEnd(callback: () => void);
}
export {};
