import React from 'react'; import type { Platform, Config, Installed } from '../../lib/detect.js'; interface InstallPhaseProps { platform: Platform; installed: Installed; config: Config; systemDepsPreInstalled?: boolean; onDone: () => void; } export declare const InstallPhase: React.FC; export {};