import { Command, CommandRunner } from "@xieyuheng/command-line"; declare type Args = {}; export declare class ReplCommand extends Command { name: string; description: string; args: {}; help(runner: CommandRunner): string; execute(argv: Args): Promise; } export {};