import { SpeechRecognizer } from 'microsoft-cognitiveservices-speech-sdk'; export declare class AzureSpeechRecognition { recognizer: SpeechRecognizer | undefined; start(subscriptionKey: string, region: string, onSpeechRecognized: (transcript: string) => void): Promise; stop(): void; }