import { Command } from '@oclif/command'; export default class GetPrivateKey extends Command { static description: string; static args: { name: string; required: boolean; }[]; static flags: { force: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }