///
type WebSpeechPonyfill = {
/**
* Function to resume `AudioContext` object when called.
*
* Web Chat will call this function on user gestures to resume suspended `AudioContext`.
*/
resumeAudioContext?: () => Promise;
/** Polyfill for Web Speech API `SpeechGrammarList` class. */
SpeechGrammarList?: typeof SpeechGrammarList;
/** Polyfill for Web Speech API `SpeechRecognition` class. */
SpeechRecognition?: typeof SpeechRecognition;
/** Polyfill for Web Speech API `speechSynthesis` instance. */
speechSynthesis?: SpeechSynthesis;
/** Polyfill for Web Speech API `SpeechSynthesisUtterance` class. */
SpeechSynthesisUtterance?: typeof SpeechSynthesisUtterance;
};
export { type WebSpeechPonyfill };
//# sourceMappingURL=WebSpeechPonyfill.d.ts.map