import { Command } from '../command'; /** * IsObsolete command. */ export default class IsObsolete extends Command { /** * Description. */ static readonly description = "check package is obsolete"; /** * Examples. */ static readonly examples: never[]; /** * Flags. */ static readonly flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; /** * Arguments. */ static readonly args: { name: string; required: boolean; description: string; }[]; /** * Handler. */ run(): Promise; }