/** * — the setup checklist that sits above the agent chat. * * The active step is expanded; completed steps collapse with a green check; * remaining steps sit dimmed below. Each method renders differently based on * its `kind` (link / form / builder-cli-auth / agent-task). */ import React from "react"; interface OnboardingPanelProps { /** Optional extra styles / classes for the wrapper. */ className?: string; /** Override the built-in title. */ title?: string; } export declare function OnboardingPanel({ className, title, }: OnboardingPanelProps): React.JSX.Element | null; export {}; //# sourceMappingURL=OnboardingPanel.d.ts.map