import React from 'react';
export interface SpeechRecognizerProps {
    appId: string;
    apiKey: string;
    apiSecret: string;
    language?: 'zh_cn' | 'en_us';
    domain?: 'iat' | 'medical' | 'assistant';
    accent?: 'mandarin' | 'cantonese';
    hotWords?: string[];
    punctuation?: boolean;
    autoStart?: boolean;
    onStart?: () => void;
    onStop?: () => void;
    onResult?: (text: string, isEnd: boolean) => void;
    onError?: (error: any) => void;
    className?: string;
    buttonClassName?: string;
    buttonStartText?: string;
    buttonStopText?: string;
    showVolume?: boolean;
    showStatus?: boolean;
}
declare const SpeechRecognizer: React.FC<SpeechRecognizerProps>;
export default SpeechRecognizer;
