import { flags, SfdxCommand } from '@salesforce/command'; import { AnyJson } from "@salesforce/ts-types"; export default class UserLicense extends SfdxCommand { static description: string; static examples: string[]; protected static requiresUsername: boolean; protected static flagsConfig: { userlicence: flags.Discriminated; }; processQueryResults(results: any): any; run(): Promise; }