import { ReactNode } from 'react'; import { Place } from 'react-tooltip'; export interface Props { // eslint-disable-next-line @typescript-eslint/no-explicit-any theme: any; renderContent: Function; children: ReactNode; place: Place; isTooltipDisplayed: boolean; }