/** * Optional Ollama LLM client for AI-assisted knowledge curation. * If Ollama is not running, all methods return null (graceful degradation). */ export declare class OllamaClient { private endpoint; private model; private available; constructor(endpoint?: string, model?: string); isAvailable(): Promise; generateTitle(content: string): Promise; generateTags(content: string): Promise; suggestMerge(entryA: string, entryB: string): Promise; } //# sourceMappingURL=ollama-client.d.ts.map