import type { CertTarget } from './config.js'; export interface DeployResult { success: boolean; certId: string; name: string; message: string; fingerprint?: string; filesWritten?: string[]; reloadOutput?: string; healthCheckPassed?: boolean; rolledBack?: boolean; durationMs?: number; } /** * Deploy a certificate to its target locations */ export declare function deployCertificate(target: CertTarget, force?: boolean): Promise; /** * Deploy all configured certificate targets */ export declare function deployAllCertificates(force?: boolean): Promise; //# sourceMappingURL=deployer.d.ts.map