import { flags } from '@oclif/command'; import Customers from '../customers'; /** * CustomersCreate class extending the superClass Customers */ export default class CustomersCreate extends Customers { /** * @param string * Description of the command Customer:create */ static description: string; /** * @param object * Declaration of the command flags */ static flags: { data: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param string * Set the command usage for help */ static usage: string; /** * @param string[] * some examples of the custommers create use for help */ static examples: string[]; run(): Promise; }