/** * Shared Certbot Fixes * * SSL certificate acquisition and renewal using Docker certbot. * Used by mac, ubuntu, and aws plugins. */ import type { Fix, Stage } from '../../types/index.js'; type EnvKey = 'staging' | 'prod' | 'production'; /** * Create SSL certificate fix for a specific stage * * @param stage The stage (staging or prod) * @param envKey The environment key in config (staging, prod, or production) */ export declare function createCertbotFix(stage: Stage, envKey: EnvKey): Fix; /** * Get certbot fix for staging */ export declare function getStagingCertbotFix(): Fix; /** * Get certbot fix for production */ export declare function getProdCertbotFix(): Fix; export {}; //# sourceMappingURL=certbot.d.ts.map