export declare enum BroadcastingStatus { STARTING = "starting", STARTED = "started", STOPPING = "stopping", STOPPED = "stopped", FAILED = "failed" } export interface BroadcastingError { message: string; broadcastAvailable: boolean; }