import React from 'react'; interface StepProps { prefixCls?: string; vertical?: boolean; marks: { [key: number]: React.ReactNode | { style: React.CSSProperties; lable: React.ReactNode; }; }; dots?: boolean; step?: number; included?: boolean; lowerBound?: number; upperBound?: number; max?: number; min?: number; dotStyle?: React.CSSProperties; activeDotStyle?: React.CSSProperties; } declare const Steps: ({ prefixCls, vertical, marks, dots, step, included, lowerBound, upperBound, max, min, dotStyle, activeDotStyle, }: StepProps) => JSX.Element; export default Steps;