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