export declare type Secret = { password: string; decryptedFilename: string; }; /** * Decrypts sensitive AES-256-CBC encrypted files using OpenSSL. * @param secrets Array of secret definitions * @param baseDirectory The full path to the directory containing the encrypted secrets */ export declare function decryptSecrets(secrets: Secret[], baseDirectory?: string): Promise;