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