import { ClassValue } from "clsx"; import { PropsWithChildren, ReactNode } from "react"; interface Props { /** * The tooltip content */ tooltip?: ReactNode; /** * The tooltip itsself */ element?: ReactNode; /** * The anchor position of the tooltip * (this is the side of the tooltip that is attached to the target) * @default "top" */ anchor?: "top" | "bottom" | "left" | "right"; /** * Custom classnames to apply to the tooltip */ className?: ClassValue; } export declare function Tooltip({ tooltip, anchor, children, className, element }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};