import { StepsProps, StepsStatusType } from './steps.type'; export interface StepsContextProps extends Pick { /** * @en Current step node status * @cn 当前步数节点状态 */ currentStatus?: StepsStatusType; /** * @en Whether the current step node is disabled * @cn 当前步骤节点是否被禁用 */ disabled?: boolean | ((index: number, id: any) => boolean); } //# sourceMappingURL=steps-context.type.d.ts.map