import React from "react"; import { LexicalEditor } from "lexical"; import "./FloatingLinkEditorPlugin.css"; export interface LinkData { url: string; target: string | null; alt: string | null; } interface FloatingLinkEditorProps { editor: LexicalEditor; isVisible: boolean; anchorElem: HTMLElement; } export declare function FloatingLinkEditor({ editor, isVisible, anchorElem }: FloatingLinkEditorProps): React.JSX.Element; export declare function FloatingLinkEditorPlugin({ anchorElem }: { anchorElem?: HTMLElement; }): JSX.Element | null; export {};