OnboardingStep:
    | "welcome"
    | "import"
    | "auth"
    | "matching"
    | "settings"
    | "sync"
    | "complete"

Represents a step in the onboarding wizard flow. Each value corresponds to a unique step in the migration process.

export type OnboardingStep =
| "welcome"
| "import"
| "auth"
| "matching"
| "settings"
| "sync"
| "complete";