import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { OllamaModel } from "./ollamamodel.js"; export type Ollama = { models?: Array | null | undefined; runningModels?: Array | null | undefined; version?: string | undefined; }; /** @internal */ export declare const Ollama$inboundSchema: z.ZodType; export declare function ollamaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ollama.d.ts.map