import { Command } from "@xieyuheng/enchanter/lib/command"; import { CommandRunner } from "@xieyuheng/enchanter/lib/command-runner"; declare type Args = { paper?: string; }; declare type Opts = { help?: boolean; version?: boolean; }; export declare class DefaultCommand extends Command { name: string; description: string; args: { paper: import("@xieyuheng/ty/lib/schemas").UnionSchema; }; 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 {};