import { TooltipPositionerProps } from '@base-ui/react/tooltip'; import { ReactNode } from 'react'; type TooltipProps = { description?: string; children: ReactNode; title?: string; cta?: string; href?: string; className?: string; } & Pick; declare const Tooltip: ({ description, children, title, cta, href, className, side, align, }: TooltipProps) => import("react/jsx-runtime").JSX.Element | null; export { Tooltip }; export type { TooltipProps }; //# sourceMappingURL=tooltip.d.ts.map