import * as React from 'react'; export interface TouchFriendlyTooltipProps { /** Tooltip text; when absent the children render bare, with no trigger wiring. */ content?: string; side?: 'top' | 'right' | 'bottom' | 'left'; children: React.ReactElement; } /** * Hover tooltip that also works on touch, where Radix's hover/focus model never * opens: a tap toggles it instead. Wraps its own `TooltipProvider`, so it can be * dropped anywhere without a provider up the tree. */ export declare function TouchFriendlyTooltip({ content, side, children }: TouchFriendlyTooltipProps): React.JSX.Element; //# sourceMappingURL=touch-friendly-tooltip.d.ts.map