import type { IJodit, IUIOption, IUIForm } from 'jodit/types'; declare module 'jodit/config' { interface Config { link: { formTemplate: (editor: IJodit) => string | HTMLElement | IUIForm; formClassName?: string; followOnDblClick: boolean; processVideoLink: boolean; processPastedLink: boolean; noFollowCheckbox: boolean; openInNewTabCheckbox: boolean; modeClassName: 'input' | 'select'; selectMultipleClassName: boolean; selectSizeClassName?: number; selectOptionsClassName: IUIOption[]; hotkeys: string[]; }; metaTagApi: string; } }