import { Command } from '@oclif/command'; export default class AccountsByAuthorizer extends Command { static description: string; static args: ({ name: string; required: boolean; default: never[]; parse: (input: string) => any[]; } | { name: string; required: boolean; default: never[]; parse?: undefined; })[]; run(): Promise; }