import React from 'react';
import type { TippyProps } from '@tippyjs/react';
/**
 * Lazy mounting tippy content
 * https://gist.github.com/atomiks/520f4b0c7b537202a23a3059d4eec908
 */
declare const LazyTippy: React.ForwardRefExoticComponent<Omit<TippyProps, "ref"> & React.RefAttributes<unknown>>;
export default LazyTippy;
