import type { SetupStep } from './planner.js'; export interface StepResult { status: 'ok' | 'skipped' | 'failed'; detail?: string; } export declare function executeStep(step: SetupStep): Promise; //# sourceMappingURL=execute.d.ts.map