import React, { FC } from "react"; export interface IIndicatorButtonTooltip { visible?: boolean; content: React.ReactNode; /** * 'click': toggle tooltip by clicking the button * 'hover': toggle tooltip by mousing over the button * 'manual': tooltip only visible be setting the 'visible' prop to 'true, shows a close button' * 'manual': tooltip only visible be setting the 'visible' prop to 'true' */ trigger: `click` | `hover` | `manual` | `none`; onClose?: () => void; onAppear?: () => void; onDisappear?: () => void; } declare const IndicatorButtonTooltip: FC; export default IndicatorButtonTooltip; //# sourceMappingURL=IndicatorButtonTooltip.d.ts.map