import type { ILLMPort, LLMCompletionResult, LLMMessage } from '../ports/llm-port.js'; export type GeminiChatLlmAdapterOptions = { apiKey: string; model: string; }; export declare class GeminiChatLlmAdapter implements ILLMPort { private readonly genAI; private readonly modelName; constructor(options: GeminiChatLlmAdapterOptions); complete(messages: LLMMessage[]): Promise; } //# sourceMappingURL=gemini-chat-llm-adapter.d.ts.map