/** * Preflight System Dependency Checker * Issue #96: npm install CLI support * Migrated from scripts/preflight-check.sh */ import { DependencyCheck, DependencyStatus, PreflightResult } from '../types'; /** * Preflight checker for system dependencies */ export declare class PreflightChecker { /** * Check a single dependency * MF-SEC-1: Uses spawnSync with array args (no shell injection) */ checkDependency(dep: DependencyCheck): Promise; /** * Check all dependencies */ checkAll(): Promise; /** * Extract version number from command output */ private extractVersion; /** * Get installation hint for a dependency */ static getInstallHint(name: string): string; } //# sourceMappingURL=preflight.d.ts.map