import { ReactNode } from 'react'; declare type TooltipProps = { children: ReactNode; content: string | undefined; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }; export declare function Tooltip({ children, content, side, align, }: TooltipProps): JSX.Element; export {};