import { flags, SfdxCommand } from '@salesforce/command'; import { AnyJson } from "@salesforce/ts-types"; export default class Org extends SfdxCommand { static description: string; static examples: string[]; static args: { name: string; }[]; protected static flagsConfig: { name: flags.Discriminated; force: flags.Discriminated>; }; protected static requiresUsername: boolean; protected static supportsDevhubUsername: boolean; protected static requiresProject: boolean; run(): Promise; }