export interface Precheck { name: string; command: string; } export interface PrecheckResult { name: string; passed: boolean; output?: string; } /** Run all prechecks sequentially. Returns on first failure or after all pass. */ export declare function runPrechecks(checks: Precheck[], cwd: string): Promise<{ ok: boolean; results: PrecheckResult[]; }>; //# sourceMappingURL=prechecks.d.ts.map