import { FC, ReactNode } from 'react'; declare enum PlacementEnum { bottom = "bottom", bottomLeft = "bottomLeft", bottomRight = "bottomRight", top = "top", topLeft = "topLeft", topRight = "topRight", left = "left", right = "right" } export interface TooltipProps { /** Children component */ children: ReactNode; /** Overwrite className */ className?: string; /** The label of the tooltip */ label: ReactNode; /** Not show the arrow tooltip */ notShowArrow?: boolean; /** The placement of the popper relative to its reference */ placement?: keyof typeof PlacementEnum; visible?: boolean; } declare const Tooltip: FC; export default Tooltip;