import { default as React } from 'react'; type Props = { tooltip: string; iconId?: string; text?: string; showArrow?: boolean; onClick?: (e: React.MouseEvent) => void; children: (setOpen: React.Dispatch>) => React.ReactNode; fillColor?: string; triggerRef?: React.RefObject; }; declare const Combo: React.FC; export default Combo;