/** * Ansible Vault Secrets fixes for Factiii Pipeline plugin * Handles Ansible Vault secrets validation (vault unlock, SSH key extraction) */ import type { FactiiiConfig, Fix } from '../../../../types/index.js'; /** * Write an SSH key to disk at the per-project isolated path. * e.g. ~/.ssh/factiii//_deploy_key */ export declare function writeSshKeyToDisk(stage: string, value: string, config: FactiiiConfig): string; export declare const secretsFixes: Fix[]; //# sourceMappingURL=secrets.d.ts.map