import { flags } from '@oclif/command'; import Command from '../base'; export default class Samples extends Command { /** * Samples class extending Command Class */ 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; }; run(): Promise; }