/** * DoctorScreen — wrapper around the existing runDoctor() CLI action. * * Runs runDoctor() (which writes its diagnostic to stderr) and shows a single * line of status in the Ink frame. Doctor's stderr output appears above the * frame and is not corrupted by Ink's stdout-only renders. * * No doctor logic lives here — all checks are delegated to runDoctor() in * src/cli/doctor.ts. */ import React from 'react'; interface DoctorScreenProps { onBack: () => void; } export declare function DoctorScreen({ onBack }: DoctorScreenProps): React.ReactElement; export {}; //# sourceMappingURL=DoctorScreen.d.ts.map