import * as React from 'react'; export interface StepProps { description?: string | React.ReactNode; icon?: React.ReactNode; status?: string; title?: string | React.ReactNode; className?: string; prefixCls?: string; style?: React.CSSProperties; wrapperStyle?: React.CSSProperties; itemWidth?: number | string; iconPrefix?: string; adjustMarginRight?: number | string; stepNumber?: number; progressDot?: boolean | ((content: React.ReactNode, options: object) => React.ReactNode); tailContent?: string | React.ReactNode; icons?: { finish: React.ReactNode; error: React.ReactNode; }; } declare const Step: React.FC; export default Step;