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