import type { FC } from "react"; import type { Editor } from "@tiptap/react"; import { type TextEditorTranslations } from "./textEditorTranslations"; interface Props { linkElement: HTMLAnchorElement; editorInstance: Editor; onClose: () => void; translations: TextEditorTranslations; } export declare const LinkTooltip: FC; export {};