import type { EditorTooltipOptions } from '../components'; export declare const tooltipMap: { MARK: typeof createMarkerTooltip; A: typeof createLinkTooltip; }; export declare function createMarkerTooltip(marker: HTMLElement): HTMLElement; export declare function createLinkTooltip(link: HTMLElement): HTMLElement; export declare function createTooltip(element: HTMLElement, title: string, options?: EditorTooltipOptions): HTMLElement;