import type { HTMLTagNames, IDictionary, IJodit } from "jodit/esm/types/index";
declare module 'jodit/esm/config' {
    interface Config {
        highlightSignature: {
            processDelay: number;
            processInChunkCount: number;
            excludeTags: HTMLTagNames[];
            schema: IDictionary<(jodit: IJodit, matches: RegExpMatchArray) => HTMLElement>;
        };
    }
}
