import type { OllamaModel, RunningModel } from './types'; /** * Fetch available models from Ollama API */ export declare function fetchOllamaModels(): Promise; /** * Fetch currently running/loaded models from Ollama API */ export declare function fetchRunningModels(): Promise; /** * Check if a specific model is currently loaded in memory */ export declare function isModelLoaded(modelName: string): Promise; /** * Load a model into memory with specified keep_alive duration * Sends an empty prompt to trigger model loading */ export declare function loadModel(modelName: string, keepAlive?: string): Promise; /** * Ensure a model is loaded, loading it if necessary * Shows progress while loading */ export declare function ensureModelLoaded(modelName: string): Promise; /** * Interactive model selection prompt */ export declare function selectModelInteractively(): Promise; /** * Launch Claude with Ollama configuration */ export declare function launchClaude(model: string, passthroughArgs: string[]): Promise; //# sourceMappingURL=utils.d.ts.map