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