import { ChatGoogleGenerativeAI } from '@langchain/google-genai'; import { LangChainAssistant } from './langchain'; import { AudioToTextProps, ProcessImageMessageProps } from '../types'; export declare class GoogleAssistant extends LangChainAssistant { protected aiModel: ChatGoogleGenerativeAI | null; protected static instance: GoogleAssistant | null; private constructor(); static getInstance(): Promise; restart(): void; private blobToBase64; audioToText({ audioBlob, audioBase64, }: AudioToTextProps): Promise; processImageMessage({ imageMessage, textMessage, streamMessageCallback, }: ProcessImageMessageProps): Promise; } //# sourceMappingURL=google.d.ts.map