type JourneyConfig = { title?: string; subtitle?: string; }; type MilestoneStep = { id: string; label: string; description?: string; completed: boolean; }; type WidgetMilestone = { id: string; label: string; description?: string; completed: boolean; steps?: MilestoneStep[]; }; type JourneyTabProps = { config?: JourneyConfig; milestones?: WidgetMilestone[]; onMilestonesChange?: (milestones: WidgetMilestone[]) => void; brandingColor?: string; onboardingJobStatus?: string | null; onboardingAnalysisLogs?: string[]; lifecycleName?: string; }; export declare function JourneyTab({ config, milestones: propMilestones, onMilestonesChange, brandingColor, lifecycleName }: JourneyTabProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=JourneyTab.d.ts.map