export interface IStepState {
    stepList: IStep[];
    currentStep: IStep;
    currentStepIndex: number;
}
export interface IStep {
    index: number;
    key: string;
    /** 是否跳过 */
    isSkip?: boolean;
    [key: string]: any;
}
export interface IStepModuleAPI {
    getStepList: () => IStep[];
    getCurrentStep: () => IStep;
    getCurrentStepIndex: () => number;
    nextStep: () => void;
    prevStep: () => void;
    gotoStep: (stepIndex: number) => void;
}
