import type { IDictionary, IFileBrowserItem, IViewBased } from 'jodit/types'; type ElementsMap = IDictionary<{ elm: HTMLElement; item: IFileBrowserItem; }>; export declare const elementsMap: (view: IViewBased) => ElementsMap; export {};