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