import { type SetupDeps, type SetupWizardResult } from './setup-wizard-types.js'; export type { SetupDeps, SetupWizardResult } from './setup-wizard-types.js'; interface Props { selfPath: string; onDone: (result: SetupWizardResult) => void; /** Override system probes for testing — all optional, default to real implementations. */ deps?: Partial; } export declare function SetupScreen({ selfPath, onDone, deps: depsOverride }: Props): import("react/jsx-runtime").JSX.Element; export declare function runSetupWizardScreen(selfPath: string): Promise;