/** * hazo_llm_text_image Function * * Text input → Image output * Generate an image from a text description/prompt. * Uses image generation capable models. */ import type { TextImageParams, LLMResponse, LLMApiConfig } from './types.js'; import type { HazoConnect } from '../hazo_connect/types.js'; /** * Call the LLM with text input and get image output * * @param params - Text input parameters for image generation * @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 image data */ export declare function hazo_llm_text_image(params: TextImageParams, _hazo_connect: HazoConnect, config: LLMApiConfig, llm?: string): Promise; //# sourceMappingURL=hazo_llm_text_image.d.ts.map