import { default as React } from 'react'; export type TooltipPlacement = 'top' | 'bottom' | 'left' | 'right'; export interface TooltipProps { text: string; title?: string; placement?: TooltipPlacement; children: React.ReactNode; className?: string; role?: React.AriaRole; 'aria-label'?: string; } export declare function Tooltip({ text, title, placement, children, className, role, 'aria-label': ariaLabel }: TooltipProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Tooltip.d.ts.map