import React from 'react'; declare const StepBubble: ({ number, title, currentStep, hideBar, loading, }: { number: number; title: string; currentStep: number; hideBar?: boolean; loading?: boolean; }) => React.JSX.Element; export default StepBubble;