import { SpeechRecognitionClass } from './types'; /** * Returns a SpeechRecognition implementation that uses a given Speechly app ID * to generate transcriptions using the Speechly API * * @param appId - Speechly app ID * @returns Class that implements the SpeechRecognition interface * @public */ export declare const createSpeechlySpeechRecognition: (appId: string) => SpeechRecognitionClass; export default createSpeechlySpeechRecognition;