/** * Shared Node.js Fixes * * Platform-aware Node.js installation checks. * Used by mac, ubuntu, and aws plugins. */ import type { Fix, Stage } from '../../types/index.js'; /** * Create Node.js installation check fix * * @param stage The stage to check (dev, staging, prod) */ export declare function createNodeInstallFix(stage: Stage): Fix; /** * Get all Node.js fixes for a stage * * @param stage The stage (dev, staging, prod) */ export declare function getNodeFixes(stage: Stage): Fix[]; //# sourceMappingURL=node.d.ts.map