import { Command, flags } from '@oclif/command'; /** * SamplesList class extending the superClass Samples */ export default class SamplesList extends Command { /** * @param string * Description of the command Samples:list description */ static description: string; /** * @param string * custom usage string for help * this overrides the default usage */ static usage: string; /** * @param object * Declaration of the command flags */ static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param string[] * some examples of the custommers list use for help */ static examples: string[]; run(): Promise; }