import { PropsWithChildren } from 'react'; type TooltipProps = PropsWithChildren<{ arrow: boolean; labelColor?: string; rest: any; }>; declare function Tooltip({ children, arrow, labelColor, ...rest }: TooltipProps): import("react/jsx-runtime").JSX.Element; export { Tooltip }; export type { TooltipProps }; //# sourceMappingURL=Tooltip.d.ts.map