import { PropsWithChildren } from "react"; declare type StepsType = { current?: number; status?: "wait" | "process" | "finish" | "error"; children?: any; onChange?: (current: number) => void; }; export declare type StepType = { length?: number; current?: number; status?: "wait" | "process" | "finish" | "error"; title?: string; index?: number; onClick?: (index: number) => void; }; export declare type StepsPropsType = PropsWithChildren; export {};