```ts
const Tooltip: React.FC<React.ComponentProps<"div"> & object>;
```

Tooltips need to be accessible to keyboard and screen reader users, so we
ensure that they are only placed on focusable and hoverable elements. For
example, plain text and disabled buttons aren't focusable, meaning keyboard
and screen reader users would be unable to access the information in that
tooltip.

## See

https://react-spectrum.adobe.com/react-spectrum/Tooltip.html#usage-on-disabled-or-non-interactive-elements
