import './container.css'; export interface FcrLiveStreamingContainerProps { defaultVideoStreamingUrl: string; defaultVideoStreamingKey: string; defaultPlayUrl: string; isStarted: boolean; isStartError: boolean; loading?: boolean; onLiveButtonClick: (videoSteamingUrl: string, videoStreamingKey: string, playUrl: string) => void; } export declare const FcrLiveStreamingContainer: (props: FcrLiveStreamingContainerProps) => import("react").JSX.Element;