5f2aab6
1
2
3
4
5
6
7
8
9
10
11
export type ProcessingStep = { id: string; title: string; label?: string; description: string; status: 'pending' | 'processing' | 'completed' | 'error' | 'in_progress'; estimatedDuration?: number; estimatedTime?: number; actualTime?: number; };