import * as React from "react"; type TooltipProps = { content: string; size?: "small" | "medium" | "large"; animation?: boolean; }; declare const Tooltip: React.FC; export default Tooltip; //# sourceMappingURL=Tooltip.d.ts.map