import 'reflect-metadata'; import { Command } from '@oclif/command'; export default class CheckoutRepoCommand extends Command { static description: string; static args: { name: string; required: boolean; description: string; }[]; run(): Promise; }