import { FC } from 'react'; import { NativeProps } from '../_util/withNativeProps'; import { TdStepItemProps } from './type'; export declare enum StepItemStatusEnum { DEFAULT = "default", PROCESS = "process", FINISH = "finish", ERROR = "error" } export declare enum StepThemeEnum { DEFAULT = "default", DOT = "dot" } export interface StepItemProps extends TdStepItemProps, NativeProps { } declare const StepItem: FC; export default StepItem;