import { SpeechGrammarListType } from '../adapter';
export declare class SpeechRecognitionCommon {
    protected _grammars: SpeechGrammarListType;
    protected _lang: string;
    protected _continuous: boolean;
    protected _interimResults: boolean;
    protected _maxAlternatives: number;
    protected _serviceURI: string;
    protected internal: SpeechRecognition;
    constructor(_grammars: SpeechGrammarListType, _lang: string, _continuous: boolean, _interimResults: boolean, _maxAlternatives: number, _serviceURI: string);
    /**
     * Property
     */
    grammars: SpeechGrammarListType;
    lang: string;
    continuous: boolean;
    interimResults: boolean;
    maxAlternatives: number;
    serviceURI: string;
}
