import { Interface } from 'readline'; import { Interpreter, NativeFunction } from 'wollok-ts'; export type Options = { project: string; assets: string; skipValidations: boolean; darkMode: boolean; host: string; port: string; skipDiagram: boolean; }; export default function (autoImportPath: string | undefined, options: Options): Promise; export declare function replFn(autoImportPath: string | undefined, options: Options): Promise; export declare function interpreteLine(interpreter: Interpreter, line: string): string; export declare function initializeInterpreter(autoImportPath: string | undefined, { project, skipValidations }: Options, serveGame?: NativeFunction): Promise;