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