import type { HTMLTagNames, IDictionary, Nullable } from 'jodit/types'; declare module 'jodit/config' { interface Config { cleanHTML: { timeout: number; replaceNBSP: boolean; fillEmptyParagraph: boolean; removeEmptyElements: boolean; replaceOldTags: IDictionary | false; useIframeSandbox: boolean; removeOnError: boolean; safeJavaScriptLink: boolean; allowTags: false | string | IDictionary; denyTags: false | string | IDictionary; disableCleanFilter: Nullable>; }; } }