import type { IJodit, ISourceEditor } from 'jodit/types'; declare module 'jodit/config' { interface Config { sourceEditor: 'area' | 'ace' | ((jodit: IJodit) => ISourceEditor); sourceEditorNativeOptions: { showGutter: boolean; theme: string; mode: string; wrap: string | boolean | number; highlightActiveLine: boolean; }; beautifyHTML: boolean; beautifyHTMLCDNUrlsJS: string[]; sourceEditorCDNUrlsJS: string[]; } }