import type { NavSection } from '../NavigationMenu/types'; export interface QuickStartScenario { title: string; level: 'beginner' | 'intermediate' | 'advanced'; duration: string; } export interface QuickStartPageProps { /** User's first name shown in the greeting */ userName: string; /** The first scenario queued for the user */ firstScenario?: QuickStartScenario; /** Currently active nav href */ activeHref?: string; /** Nav sections — defaults to the standard Discourser nav */ navSections?: NavSection[]; onStartPracticing?: () => void; onLearnAboutSetup?: () => void; onNavigate?: (href: string) => void; } export declare function QuickStartPage({ userName, firstScenario, activeHref, navSections, onStartPracticing, onLearnAboutSetup, onNavigate, }: QuickStartPageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=QuickStartPage.d.ts.map