UNPKG

tdesign-react

Version:
12 lines (11 loc) 406 B
import React from 'react'; import { TdStepsProps } from './type'; import { StyledProps } from '../common'; import type { StepItemProps } from './StepItem'; export interface StepsProps extends TdStepsProps, StyledProps { children?: React.ReactNode; } declare const Steps: React.FunctionComponent<StepsProps & React.RefAttributes<any>> & { StepItem: React.FC<StepItemProps>; }; export default Steps;