/** * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC * */ export interface TdStepItemProps { /** * 步骤描述 * @default '' */ content?: { type: StringConstructor; value?: string; }; /** * 步骤条自定义内容 */ extra?: { type: StringConstructor; value?: string; }; /** * 图标。传入 slot 代表使用插槽,其他字符串代表使用内置图标 */ icon?: { type: StringConstructor; value?: string; }; /** * 当前步骤的状态:默认状态(未开始)、进行中状态、完成状态、错误状态 * @default default */ status?: { type: StringConstructor; value?: StepStatus; }; /** * 标题 * @default '' */ title?: { type: StringConstructor; value?: string; }; } export declare type StepStatus = 'default' | 'process' | 'finish' | 'error';