import type { LanguageModelV3 } from '@ai-sdk/provider'; import type { ISmartAiOptions } from './smartai.interfaces.js'; /** * Custom LanguageModelV3 implementation for Ollama. * Calls Ollama's native /api/chat endpoint directly to support * think, num_ctx, temperature, and other model options. */ export declare function createOllamaModel(options: ISmartAiOptions): LanguageModelV3;