import { GlobalProps } from '../../shared/global'; import { ComponentChildren } from '../../shared/children'; import { BaseOverlayProps } from '../../shared/overlay'; export interface TooltipProps extends GlobalProps, BaseOverlayProps { /** * The content of the Tooltip. */ children?: ComponentChildren; }