import * as React from "react"; export interface ITooltipProps { showTooltip?: boolean; position?: "top" | "bottom" | "left" | "right"; text?: string; iconProps?: any; TooltipStyle?: React.CSSProperties; } export declare const Tooltip: ({ showTooltip, position, text, iconProps, TooltipStyle }: ITooltipProps) => JSX.Element; declare const _default: React.MemoExoticComponent<({ showTooltip, position, text, iconProps, TooltipStyle }: ITooltipProps) => JSX.Element>; export default _default;