import { MmUIComponent } from './component' /** Steps component */ export declare class MmSteps extends MmUIComponent { /** Specify size, currently supports plain (default) and mini (small) */ size: string /** Specify the direction of the step bar. At present, support is horizontal and vertical */ direction: string /** Specifies the current step, counting from 0. In the substep element, you can override the status attribute */ current: number /** Dot bar */ pdot: boolean /** Specify the status of the current step. */ status: 'wait' | 'process' | 'finish' | 'error' }