import { ReactNode } from 'react'; /** * To implement a remote action, create a new context whose provider uses the * message hooks to send and receive messages. The provider should perform the * required actions when receiving a message from a remote participant. Its * value should provide functions that trigger the sending of those messages to * remote participants, and any related states. Include the provider with the * other providers below. */ export declare const RemoteActions: ({ children }: { children: ReactNode; }) => JSX.Element;