/// <reference types="react" />
import { SCLiveStreamType } from '@selfcommunity/types';
/**
 * Interface LiveStreamContextType
 */
export interface LiveStreamContextType {
    /**
     * Options
     */
    liveStream: SCLiveStreamType;
}
export declare const LiveStreamContext: import("react").Context<LiveStreamContextType>;
/**
 * Let's only export the `useLiveStream` hook instead of the context.
 * We only want to use the hook directly and never the context component.
 */
export declare function useLiveStream(): LiveStreamContextType;
