import { type PopupPlacement, type PopupProps } from '@gravity-ui/uikit'; import "./TooltipView.css"; type LinkProps = { href: string; anchorElement: HTMLElement; placement: PopupPlacement; onOpenChange: NonNullable; onChange?: (opts: { href: string; }) => void; onCancel?: () => void; onRemove?: () => void; onUrlChange?: (url: string) => void; autoFocus?: boolean; onOpenInNewTab?: () => void; }; export declare const Link: import("react").NamedExoticComponent; export {};