import { BaseCommand } from '../../base-command.js'; export default class CustomersGet extends BaseCommand { static args: { customerId: import("@oclif/core/interfaces").Arg>; }; static description: string; static flags: { output: import("@oclif/core/interfaces").OptionFlag; project: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }