import React from 'react'; import type { StepProps } from 'antd'; export interface ArrowStepItemProps { arrowStyle?: 'simple' | 'color' | 'colorFlag' | 'colorArrow'; title?: string; status?: StepProps['status']; color?: string; stepStyle: 'number' | 'icon' | 'dot' | 'arrow'; } export declare function extractNumbersFromRgb(str: string): number[] | null; declare const ArrowStepItem: React.FC; export default ArrowStepItem;