import { Command, flags } from "@oclif/command"; export default class Docs extends Command { static description: string; static examples: string[]; static args: { name: string; required: boolean; description: string; hidden: boolean; }[]; static flags: flags.Input; run(): Promise; }