/** @jsx jsx */ import { FC, ReactNode } from 'react'; import { PopoverProps } from '../Popover'; export interface InfoTipProps { /** * size of the icon in pixels */ size?: number; /** * custom icon */ icon?: ReactNode; } /** * * Displays an information icon with markdown-enabled popup on hover */ export declare const InfoTip: FC;