/** * Probe for a local Ollama server and, when one is reachable AND no LLM is * configured, print a one-line discoverability hint. Fail-safe: a down/slow/ * absent server never errors, stalls, or changes the exit code — covered by * probeOllama's bounded AbortSignal. NEVER auto-enables; hint only. * * `print` is injected so each init path routes through its own stdout/stderr * writer (no raw console.log). Used by BOTH the Ink and non-interactive paths. */ export declare function maybePrintOllamaHint(print: (line: string) => void): Promise; export declare function runInit(args: string[]): Promise; //# sourceMappingURL=init.d.ts.map