import React from 'react'; import { Style } from 'inlines'; import { Key } from '../KeyHint/index.js'; type TooltipProps = { description?: string; keyHint?: Key; children: React.ReactNode; tableTooltip?: boolean; style?: Style; }; export declare const Tooltip: ({ description, keyHint, children, tableTooltip, style, }: TooltipProps) => string | number | boolean | import("react/jsx-runtime").JSX.Element | Iterable; export {};