export declare function parseReplInput(input: string): { command: string; args: string[]; }; /** readline-style completer (kept for tests & potential reuse). */ export declare function completer(line: string): [string[], string]; /** Return completions for the live autocomplete dropdown. */ export declare function getCompletions(line: string): string[]; export interface ReplOptions { /** Pre-activate a session on startup (used by CLI create/enter). */ initialSession?: { id: string; repo: string; goal: string; repoLocalPath: string; }; /** Image file paths to attach to the initial session. */ images?: string[]; } export declare function runRepl(opts?: ReplOptions): Promise; //# sourceMappingURL=repl.d.ts.map