import type { Message } from '../types'; export declare function mergeChatsIntoTranscripts(transcripts: Message[], chats: Message[]): Message[]; export declare function useCombinedMessages(): { allMessages: Message[]; agentState: import("@livekit/components-react").AgentState; sendChatMessage: (message: string) => Promise; isSendingChat: boolean; };