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