import React from "react"; declare type Position = "bottom left" | "bottom center" | "bottom right" | "top left" | "top center" | "top right" | "left top" | "left center" | "left bottom" | "right top" | "right center" | "right bottom"; interface Props { children: JSX.Element; className?: string; content: JSX.Element | JSX.Element[] | (() => JSX.Element) | string; position?: Position; arrow?: boolean; disabled?: boolean; keepalive?: boolean; gap?: number; ellipsis?: number | null; maxWidth?: number; backgroundColor?: string; padding?: string; radius?: number; } export declare const ToolTip: React.FC; export {};