import { Command } from "../command"; import { CommandRunner } from "../command-runner"; declare type Args = { name?: string; }; export declare class CommonHelpCommand extends Command { name: string; description: string; args: { name: import("@xieyuheng/ty/lib/schemas").UnionSchema; }; help(runner: CommandRunner): string; execute(argv: Args, runner: CommandRunner): Promise; helpCommand(name: string, runner: CommandRunner): void; usage(): void; defaultCommand(runner: CommandRunner): void; listCommands(runner: CommandRunner): void; signature(command: Command): string; } export {};