import type { HMSException } from './HMSException'; import type { HMSStreamingState } from './HMSStreamingState'; export declare class HMSRtmpStreamingState { running: boolean; error?: HMSException; startedAt?: Date; state: HMSStreamingState; constructor(params: { running: boolean; error?: HMSException; startedAt?: Date; state: HMSStreamingState; }); }