tdesign-react
Version:
TDesign Component for React
10 lines (9 loc) • 308 B
TypeScript
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;