import { KendoButtonOptions, KendoButtonProps, KendoButtonState } from '../button';
import { KendoComponent } from '../_types/component';
export declare const SPEECH_TO_TEXT_BUTTON_CLASSNAME = "k-speech-to-text-button";
export type KendoSpeechToTextButtonOptions = KendoButtonOptions;
export type KendoSpeechToTextButtonState = KendoButtonState;
export type KendoSpeechToTextButtonProps = KendoButtonProps & KendoSpeechToTextButtonOptions & {
    listening?: boolean;
};
export declare const SpeechToTextButton: KendoComponent<KendoSpeechToTextButtonProps & KendoSpeechToTextButtonState & React.HTMLAttributes<HTMLButtonElement>>;
export default SpeechToTextButton;
