import React from 'react'; export interface TooltipProps { children?: React.ReactNode; content?: React.ReactNode | string; direction?: 'top' | 'bottom'; } export declare function Tooltip({ children, content, direction }: TooltipProps): import("react/jsx-runtime").JSX.Element;