import { IGenAIService, GenAIResult } from './types.js'; import { ToolDef } from './tools.js'; export declare class VertexGenAIService implements IGenAIService { private config; private client; private model; constructor(config: any); init(): Promise; getModelName(): string; generate(prompt: string, tools?: ToolDef[]): Promise; stream(prompt: string, tools?: ToolDef[]): AsyncGenerator; } //# sourceMappingURL=vertex-genai-service.d.ts.map