import { PropsWithChildren } from 'react'; type TooltipProps = PropsWithChildren & { initialOpened?: boolean; onClose?: VoidFunction; }; export { TooltipProps };