import { StepsToken } from "./index.js"; import { GenerateStyle } from "../../theme/interface/index.js"; import "../../theme/internal.js"; import { CSSObject } from "@antdv-next/cssinjs"; //#region src/steps/style/status.d.ts declare const STATUS_WAIT = "wait"; declare const STATUS_PROCESS = "process"; declare const STATUS_FINISH = "finish"; declare const STATUS_ERROR = "error"; declare const genStatusStyle: GenerateStyle; //#endregion export { STATUS_ERROR, STATUS_FINISH, STATUS_PROCESS, STATUS_WAIT, genStatusStyle as default };