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