import React from "react"; interface LinkPopoverProps { /** The link text displayed */ linkText: string; /** The URL of the link */ linkUrl: string; /** Position of the popover */ position: { top: number; left: number; }; /** Callback when Edit button is clicked */ onEdit: () => void; /** Callback when Remove button is clicked */ onRemove: () => void; /** Callback when popover should close */ onClose: () => void; } /** * CometChatLinkPopover - A popover that appears when clicking on a link * Shows link text, URL (clickable), and Edit/Remove buttons */ declare const CometChatLinkPopover: React.FC; export { CometChatLinkPopover };