import { Command } from '@oclif/core'; export default class Custom extends Command { static description: string; static examples: string[]; static usage: string; static strict: boolean; static hidden: boolean; static flags: { repos: import("@oclif/core/lib/interfaces").OptionFlag; owner: import("@oclif/core/lib/interfaces").OptionFlag; }; run(): Promise; }