import React, { ReactNode } from 'react'; interface ContextProps { toggle: () => void; hasLocalParticipantRaisedHand: boolean; hasParticipantRaisedHand: (identity: string) => boolean; raisedHands: string[]; } export declare const RaisedHandsContext: React.Context; export declare const RaisedHandsContextProvider: ({ children, }: { children: ReactNode; }) => JSX.Element; export {};