import { Command } from "../../command"; import { CommandRunner } from "../../command-runner"; declare type Args = {}; declare type Opts = { help?: boolean; version?: boolean; }; export declare class DefaultCommand extends Command { name: string; description: string; args: {}; opts: { help: import("@xieyuheng/ty/lib/schemas").UnionSchema; version: import("@xieyuheng/ty/lib/schemas").UnionSchema; }; alias: { help: string[]; version: string[]; }; execute(argv: Args & Opts, runner: CommandRunner): Promise; } export {};