2021-03-20 16:18:05 +01:00
|
|
|
import * as React from "react";
|
2021-02-20 18:55:36 +01:00
|
|
|
import { Registry } from "tc-shared/events";
|
2021-03-20 16:18:05 +01:00
|
|
|
import { ChannelVideoEvents } from "./Definitions";
|
2021-05-01 23:38:36 +02:00
|
|
|
export declare const VideoIdContext: React.Context<string>;
|
2021-03-20 16:18:05 +01:00
|
|
|
export declare const RendererVideoEventContext: React.Context<Registry<ChannelVideoEvents>>;
|
|
|
|
export declare const VideoContainer: React.MemoExoticComponent<(props: {
|
|
|
|
isSpotlight: boolean;
|
|
|
|
}) => JSX.Element>;
|
2021-02-20 18:55:36 +01:00
|
|
|
export declare const ChannelVideoRenderer: (props: {
|
|
|
|
handlerId: string;
|
|
|
|
events: Registry<ChannelVideoEvents>;
|
|
|
|
}) => JSX.Element;
|