import { Command } from "@oclif/command"; export default class CreatePlaylist extends Command { static description: string; static examples: string[]; static flags: {}; static args: { name: string; }[]; run(): Promise; }