import React from 'react'; import { TooltipV2 } from '../../../components'; interface Props { children: TooltipV2.TooltipProps['children']; enabled?: boolean; href: string; textOnly?: boolean; } export declare function LinkWithTooltip({ children, enabled, href, textOnly }: Props): React.JSX.Element; export {};