import { StrandsOllamaModel } from "./strands-ollama.js"; import type { LlmOptions, OllamaProviderOptions } from "../types.js"; /** Strands {@link Model} backed by local (or remote) Ollama via `ollama` JS. */ export declare function create(providerOptions: OllamaProviderOptions, llmOptions: LlmOptions): StrandsOllamaModel;