import { Command } from "@xieyuheng/enchanter/lib/command"; import { CommandRunner } from "@xieyuheng/enchanter/lib/command-runner"; declare type Args = { paper: string; }; declare type Opts = { watch?: boolean; }; export declare class RunCommand extends Command { name: string; description: string; args: { paper: import("@xieyuheng/ty/lib/schemas").StringSchema; }; opts: { watch: import("@xieyuheng/ty/lib/schemas").UnionSchema; }; help(runner: CommandRunner): string; execute(argv: Args & Opts): Promise; } export {};