import React, { ReactNode } from 'react'; interface Value { testValue: string; sendTestMessage: () => void; } export declare const TestMessageContext: React.Context; /** * This is an example implementation for sending data messages to remote * participants. sendTestMessage sends a random number to all other participants * and testValue holds the random number received from the other participants, * To test this, add this to the MenuBar: * const { testValue, sendTestMessage } = useContext(TestMessageContext); * */ export declare const TestMessageProvider: ({ children }: { children: ReactNode; }) => JSX.Element; export {};