import React, { FC } from 'react'; interface TooltipOverflowProps { /** Children that could overflow to render. */ children: React.ReactNode; /** When the condition changes, this will update with that latest overflow information. */ onConditionChange: (isConditionPassed: boolean) => void; } export declare const TooltipOverflow: FC; export {};