/** * ink-repl.ts — Entry point for the TUI REPL. * * Responsibilities: * - Auth + model loading * - SqAgent construction * - MCP setup (optional, background) * - Session persistence hooks * - Launch runTuiRepl (custom ANSI renderer — replaces Ink) */ import { Session } from '../state/session.js'; import type { SqConfig } from '../config.js'; export declare function startInkRepl(config: SqConfig, opts?: { resumeSession?: Session; }): Promise; //# sourceMappingURL=ink-repl.d.ts.map