import { type CommandStep, type StepResult } from '../../../framework/CommandStep.js'; import { type DoctorContext } from '../context.js'; export declare class ApiKeyDetectedStep implements CommandStep { id: string; name: string; shouldRun(context: DoctorContext): Promise; run(context: DoctorContext): Promise; }