import { flags } from '@oclif/command'; import Command from '../base'; /** * Customers class extending Command Class */ export default class Customers extends Command { /** * @param string * Description of the command Customer */ 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; }