/// import Command from "./Command"; import repl from "repl"; declare class TinkerCommand extends Command { protected signature: string; protected description: string; protected shell: repl.REPLServer; handle(): Promise<0>; protected loadModule(module: string): Promise; } export default TinkerCommand;