import Command from '@shopify/cli-kit/node/base-command'; export default class HelpCommand extends Command { static args: { command: import("@oclif/core/interfaces").Arg>; }; static description: string; static usage: string; static flags: { 'nested-commands': import("@oclif/core/interfaces").BooleanFlag; }; static strict: boolean; run(): Promise; }