import type Conf from 'conf'; import type { InfinicodeConfig } from '../kernel/setup.js'; /** One-shot: run a single command against a fresh kernel and exit. */ export declare function consoleRun(config: Conf, command: string): Promise; /** Interactive REPL over a persistent kernel. */ export declare function consoleRepl(config: Conf): Promise;