import type { AIProviderConfig } from "../../../types/ai"; type GeminiConfig = { apiKey: string; baseUrl?: string; imageModels?: Set | string[]; }; export declare const gemini: (config: GeminiConfig) => AIProviderConfig; export {};