import React from 'react'; export declare enum TooltipColor { Dark = "dark", Grey = "grey", Purple = "purple" } export declare enum TooltipPosition { TopStart = "top-start", Top = "top", TopEnd = "top-end", Left = "left", Right = "right", BottomStart = "bottom-start", Bottom = "bottom", BottomEnd = "bottom-end" } declare type TooltipProps = { /** * Text to be shown in tooltip */ label: string | React.ReactNode; /** * Text to be shown in tooltip */ color?: TooltipColor; /** * Placement of tooltip. * Default is bottom */ position?: TooltipPosition; /** * Element to be hovered */ children?: React.ReactElement; }; export declare const Tooltip: React.FC; export {};