import React from 'react'; declare type ProgressStepItemProps = { className?: string; data?: { [key: string]: string; }; status?: "complete" | "active" | "inactive" | "hidden"; children?: React.ReactNode | React.ReactNode[]; icon?: string; }; declare const ProgressStepItem: (props: ProgressStepItemProps) => React.ReactElement; export default ProgressStepItem;