| 1 | import * as React from "react"; |
| 2 | export interface TooltipTheme { |
| 3 | /** |
| 4 | * Added to the tooltip element. |
| 5 | */ |
| 6 | tooltip?: string; |
| 7 | /** |
| 8 | * Added to the root when the tooltip is active. |
| 9 | */ |
| 10 | tooltipActive?: string; |
| 11 | /** |
| 12 | * Wrapper for the root element used to position the tooltip. |
| 13 | */ |
| 14 | tooltipWrapper?: string; |
| 15 | } |
| 16 | |
| 17 | interface TooltipProps { |
| 18 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected