import { IAgentScopeRuntimeWebUIMessage, IAgentScopeRuntimeWebUIMessagesContext } from "../../.."; import React from "react"; export declare const ChatAnywhereMessagesContext: import("use-context-selector").Context; export declare function ChatAnywhereMessagesContextProvider(props: { children: React.ReactNode | React.ReactNode[]; }): import("react/jsx-runtime").JSX.Element; export declare const useChatAnywhereMessages: () => { getMessages: () => IAgentScopeRuntimeWebUIMessage[]; removeAllMessages: () => void; getMessage: (id: string) => IAgentScopeRuntimeWebUIMessage; removeMessage: (message: Partial) => void; updateMessage: (message: Partial & { id: string; }) => void; };