/**
 * @author Javen
 * @copyright javendev@126.com
 * @description 接收语音识别结果，与 InVoiceMsg 唯一的不同是多了一个 Recognition 标记
 */
import { InVoiceMsg } from './InVoiceMsg';
export declare class InSpeechRecognitionResults extends InVoiceMsg {
    private recognition;
    constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string);
    get getRecognition(): string;
    set setRecognition(recognition: string);
}
