import { Callback } from "@qawolf/types"; import "./await-outside"; export declare class ReplWithContext { private _server; constructor(); includeContext(context: any): void; close(): void; on(event: string, callback: Callback): void; } export declare const repl: (context?: any, onCreated?: ((repl: ReplWithContext) => void) | undefined) => Promise;