import { SendImageMessageProps, SendTextMessageProps } from '../hooks/use-assistant'; import { MessageModel } from '../types'; export declare function sendTextMessageHandler({ newMessage, messages, setMessages, setTypingIndicator, sendTextMessage, onMessagesUpdated, }: { newMessage: string; messages: MessageModel[]; setMessages: (value: React.SetStateAction) => void; setTypingIndicator: (value: React.SetStateAction) => void; sendTextMessage: (props: SendTextMessageProps) => Promise; onMessagesUpdated?: (messages: MessageModel[]) => void; }): Promise; export declare function sendImageMessageHandler({ newMessage, imageBase64String, messages, setMessages, setTypingIndicator, sendImageMessage, onMessagesUpdated, }: { newMessage: string; imageBase64String: string; messages: MessageModel[]; setMessages: (value: React.SetStateAction) => void; setTypingIndicator: (value: React.SetStateAction) => void; sendImageMessage: (props: SendImageMessageProps) => Promise; onMessagesUpdated?: (messages: MessageModel[]) => void; }): Promise; //# sourceMappingURL=assistant-utils.d.ts.map