import React from 'react'; interface ContextValue { isInteracting: boolean; setIsInteracting: React.Dispatch>; isShowingIndicator: boolean; setIsShowingIndicator: React.Dispatch>; } interface VideoContextProviderProps { defaultValue?: boolean; } export declare const VideoInteractingContext: React.Context; export declare const VideoInteractingContextProvider: React.FC; export declare const useInteract: () => ContextValue; export {};