/** * Setup wizard component - first-run configuration */ import React from 'react'; import type { Configuration } from '../types/index.js'; export interface SetupWizardProps { onComplete: (config: Configuration) => void; } export declare function SetupWizard({ onComplete }: SetupWizardProps): React.JSX.Element; //# sourceMappingURL=SetupWizard.d.ts.map