import BaseCommand from '../base-command'; export default class Accounts extends BaseCommand { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; debug: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }