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