import type { ElStepProps } from '../ele-app/el';

/**
 * 步骤条数据
 */
export interface StepItem extends ElStepProps {
  /** 循环的 key */
  key?: string | number | symbol;
}

/**
 * 步骤条类型
 */
export type StepType = 'inline' | null;
