/** * LinkContextMenu - Context menu displayed when clicking on links * * Options menu shown when right-clicking or Ctrl+clicking on a link */ import type React from 'react'; interface LinkContextMenuProps { visible: boolean; position: { x: number; y: number; }; linkData: { href: string; text: string; from?: number; to?: number; } | null; onClose: () => void; onOpenLink: (href: string) => void; onEditLink: (linkData: { href: string; text: string; }) => void; } export declare const LinkContextMenu: React.FC; export {}; //# sourceMappingURL=LinkContextMenu.d.ts.map