import './index.less'; import { Editor } from '@tiptap/core'; import 'tippy.js/animations/scale-extreme.css'; type HyperlinkContentProps = { editor?: Editor; from?: any; to?: any; changeLink?: () => void; }; declare const HyperlinkContent: (props: HyperlinkContentProps) => import("react/jsx-runtime").JSX.Element; export default HyperlinkContent;