import { Command } from '@oclif/core'; export default class Decrypt extends Command { static description: string; static examples: string[]; static args: { name: string; required: boolean; description: string; hidden: boolean; }[]; run(): Promise; }