/** * hazo_llm_image_text Function * * Image input → Text output * Analyze an image and get text description/response. * Supports image analysis, OCR, object detection descriptions, etc. */ import type { ImageTextParams, LLMResponse, LLMApiConfig } from './types.js'; import type { HazoConnect } from '../hazo_connect/types.js'; /** * Call the LLM with an image input and get text output * * @param params - Image input parameters * @param _hazo_connect - HazoConnect instance (unused, kept for API consistency) * @param config - LLM API configuration * @param llm - Optional LLM provider name (uses primary LLM if not specified) * @returns LLM response with generated text description */ export declare function hazo_llm_image_text(params: ImageTextParams, _hazo_connect: HazoConnect, config: LLMApiConfig, llm?: string): Promise; //# sourceMappingURL=hazo_llm_image_text.d.ts.map