import type { IControlType, IDictionary, IJodit } from 'jodit/types'; declare module 'jodit/config' { interface Config { popup: IDictionary | ((editor: IJodit, target: HTMLElement | undefined, close: () => void) => Array | HTMLElement | string)>; toolbarInlineDisabledButtons: string[]; toolbarInline: boolean; toolbarInlineForSelection: boolean; toolbarInlineDisableFor: string | string[]; } }