import { ReactNode } from 'react'; import { TooltipComponent } from '../Tooltip/types'; export declare namespace IStepper { type Option = { id: number; icon: ReactNode; title: string; hasAlert?: boolean; tooltipText?: string; }; type Props = { width?: string; options?: Option[]; activeStep?: number; onStepChange?: (step: number) => void; direction?: 'row' | 'column'; hasBottom?: boolean; bottomOptions?: Option[]; activeColor?: string; activeBgColor?: string; hoverBgColor?: string; padding?: string; showLeftBorder?: boolean; showTooltip?: boolean; tooltipPosition?: TooltipComponent.Position; tooltipOffset?: string; }; }