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