/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SpeechToTextButtonProps } from './interfaces/SpeechToTextButtonProps'; import { SpeechToTextButtonHandle } from './interfaces/SpeechToTextButtonHandle'; import * as React from 'react'; /** * Represents a speech recognition engine that will be used. */ export declare enum SpeechToTextButtonMode { /** * Uses the [Web Speech API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API) for speech recognition. */ WebSpeech = "webSpeech", /** * Does not use any speech recognition engine. Use when you need to integrate the component with external speech recognition services or APIs. */ None = "none" } /** * Represents the [KendoReact SpeechToTextButton component](https://www.telerik.com/kendo-react-ui/components/buttons/speechtotextbutton). * * @example * ```jsx * const App = () => { * return ( * * ); * }; * ``` */ export declare const SpeechToTextButton: React.ForwardRefExoticComponent>;