/** * Shared Docker Fixes * * Platform-aware Docker installation and running status checks. * Used by mac, ubuntu, and aws plugins. */ import type { Fix, Stage } from '../../types/index.js'; /** * Create Docker installation check fix * * @param stage The stage to check (dev, staging, prod) * @param idPrefix Optional prefix for fix ID (e.g., 'aws') */ export declare function createDockerInstallFix(stage: Stage, idPrefix?: string): Fix; /** * Create Docker running check fix * * @param stage The stage to check (dev, staging, prod) * @param idPrefix Optional prefix for fix ID (e.g., 'aws') */ export declare function createDockerRunningFix(stage: Stage, idPrefix?: string): Fix; /** * Get all Docker fixes for a stage * * @param stage The stage (dev, staging, prod) * @param idPrefix Optional prefix for fix IDs */ export declare function getDockerFixes(stage: Stage, idPrefix?: string): Fix[]; //# sourceMappingURL=docker.d.ts.map