import { PropsWithChildren } from 'react';
export declare const Tooltip: ({ content, position, children, }: PropsWithChildren<{
    content?: string | undefined;
    position?: "top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | undefined;
}>) => import("react/jsx-runtime").JSX.Element;
