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