import { flags, SfdxCommand } from "@salesforce/command"; import { AnyJson } from "@salesforce/ts-types"; export default class List extends SfdxCommand { static description: string; static examples: string[]; protected static requiresUsername: boolean; protected static flagsConfig: { mtype: flags.Discriminated; prjfolder: flags.Discriminated; }; fillInCmd: (mtype: any, metadata: any, cmd: any, username: any, prjfolder: any) => any; run(): Promise; }