Steps.d.ts
457 Bytes
/// <reference types="react" />
declare const Steps: ({ prefixCls, vertical, reverse, marks, dots, step, included, lowerBound, upperBound, max, min, dotStyle, activeDotStyle, }: {
prefixCls: any;
vertical: any;
reverse: any;
marks: any;
dots: any;
step: any;
included: any;
lowerBound: any;
upperBound: any;
max: any;
min: any;
dotStyle: any;
activeDotStyle: any;
}) => JSX.Element;
export default Steps;