export interface StepContent { id: string; label: string; path: string; order: number; status: 'completed' | 'started' | 'not_started'; dependencies: string[]; actions: Record; context: object; } export interface OnboardingState { steps: StepContent[]; context: object; isFetching: boolean; errors: Record; } export type OnboardingDataResponse = { steps: StepContent[]; context: object; }; //# sourceMappingURL=types.d.ts.map