import { GoogleGenAI } from '@google/genai'; import type { LLMProvider } from '../../types/index.js'; import type { LLMClientInitializationResult } from './types.js'; /** * Gemini 클라이언트 초기화 * * @note * - `@google/genai` 라이브러리를 사용합니다. * - 생성자에 API 키 객체를 전달합니다: `new GoogleGenAI({ apiKey })` */ export declare function initializeGemini(result: LLMClientInitializationResult, selectedProvider: LLMProvider): GoogleGenAI | null; //# sourceMappingURL=gemini.d.ts.map