export { AltImageClient } from "./client"; export type { Provider, ImageInput, AltImageClientOptions, GenerateAltOptions, ProcessHTMLOptions, AltResult, BatchResult, BatchError, AIProvider, } from "./types"; /** * Convenience function: create a client and generate alt text in one call. */ export declare function generateAlt(image: string | Buffer, options: { provider: "openai" | "gemini"; apiKey: string; model?: string; language?: string; maxLength?: number; customPrompt?: string; }): Promise;