import { Command } from "@xieyuheng/enchanter/lib/command"; import { CommandRunner } from "@xieyuheng/enchanter/lib/command-runner"; declare type Args = { dir?: string; }; export declare class ReplCommand extends Command { name: string; description: string; args: { dir: import("@xieyuheng/ty/lib/schemas").UnionSchema; }; help(runner: CommandRunner): string; execute(argv: Args): Promise; } export {};