UNPKG

tdesign-react

Version:
10 lines (9 loc) 308 B
import React from 'react'; import { TdStepItemProps } from './type'; import { StyledProps } from '../common'; export interface StepItemProps extends TdStepItemProps, StyledProps { index?: number; children?: React.ReactNode; } declare const StepItem: React.FC<StepItemProps>; export default StepItem;