import type { IDictionary } from 'jodit/types'; import type { ISpeechRecognizeConstructor } from './interface'; declare module 'jodit/config' { interface Config { speechRecognize: { readonly api: ISpeechRecognizeConstructor; readonly lang?: string; readonly continuous: boolean; readonly interimResults: boolean; readonly sound: boolean; readonly commands: IDictionary; }; } }