import { Command } from '@oclif/core'; import '../globals.js'; /** * NOTES: * graphviz * use references to resources for things like lambda environment vars to enable graph to be built correctly (rather than reference local or var name: ie dynamodb table name) */ export default class Create extends Command { private stdin; private static readonly defaultFileNameConvention; static description: string; static examples: string[]; static flags: { configFile: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; outFile: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; outFormat: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; verbose: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; continueOnError: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; init(): Promise; private loggerFactory; private errorFactory; run(): Promise; private getConfig; }