import React, { PropsWithChildren } from 'react';
import { TippyProps } from '@tippyjs/react';
type Props = PropsWithChildren<TippyProps>;
declare const LazyTippy: React.ForwardRefExoticComponent<Pick<Props, "className" | "disabled" | "children" | "content" | "appendTo" | "render" | "animateFill" | "aria" | "delay" | "duration" | "followCursor" | "getReferenceClientRect" | "hideOnClick" | "ignoreAttributes" | "inlinePositioning" | "interactive" | "interactiveBorder" | "interactiveDebounce" | "moveTransition" | "offset" | "placement" | "plugins" | "popperOptions" | "showOnCreate" | "sticky" | "touch" | "trigger" | "triggerTarget" | "onAfterUpdate" | "onBeforeUpdate" | "onCreate" | "onDestroy" | "onHidden" | "onHide" | "onMount" | "onShow" | "onShown" | "onTrigger" | "onUntrigger" | "onClickOutside" | "allowHTML" | "animation" | "arrow" | "inertia" | "maxWidth" | "role" | "theme" | "zIndex" | "reference" | "visible" | "singleton"> & React.RefAttributes<Element>>;
export default LazyTippy;
