/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the speech recognition engine or integration the component will use. The possible values are: * * * `webSpeech`—Uses the browser's native Web Speech API to perform speech recognition. This is the default mode when available and supported by the browser. * * `none`—Disables built-in speech recognition. Use this when integrating with a custom or third-party speech recognition service. */ export type IntegrationMode = 'webSpeech' | 'none';