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