import { type FC, type ReactNode } from 'react'; type Props = { message: ReactNode; isVisible: boolean; parentRect: DOMRect | null; isIcon?: boolean; }; export declare const TooltipPortal: FC; export {};