import { ReplEvent, ReplEventHandler } from "@xieyuheng/enchanter/lib/repl"; import { Book } from "../book"; import { AppConfig } from "./app-config"; export declare class AppReplEventHandler extends ReplEventHandler { config: AppConfig; book: Book; path: string; constructor(opts: { book: Book; path: string; }); greeting(): void; handle(event: ReplEvent): Promise; private execute; }