import { DotenvConfigOutput } from 'dotenv'; interface DecryptServiceAttrs { cmd: any; dotenvKey: any; } type InstructionsType = { ciphertext: string; key: string; }; declare class DecryptService { cmd: any; dotenvKey: any; log: any; constructor(attrs?: DecryptServiceAttrs); run(): Promise; _instructions(result: DotenvConfigOutput, dotenvKey: string): InstructionsType; get vaultPath(): string; } export { DecryptService };