import { Command, flags } from '@oclif/command'; export default class DevRetrieve extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; username: flags.IOptionFlag; file: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise; }