import LiveEncodingHeartbeatManifests from './LiveEncodingHeartbeatManifests';
import LiveEncodingHeartbeatSegments from './LiveEncodingHeartbeatSegments';
/**
 * Output statistics for a live encoding heartbeat.
 * @export
 * @class LiveEncodingHeartbeatOutput
 */
export declare class LiveEncodingHeartbeatOutput {
    /**
     * Manifest statistics for the live encoding output.
     * @type {LiveEncodingHeartbeatManifests}
     * @memberof LiveEncodingHeartbeatOutput
     */
    manifests?: LiveEncodingHeartbeatManifests;
    /**
     * Segment processing statistics for the live encoding output.
     * @type {LiveEncodingHeartbeatSegments}
     * @memberof LiveEncodingHeartbeatOutput
     */
    segments?: LiveEncodingHeartbeatSegments;
    constructor(obj?: Partial<LiveEncodingHeartbeatOutput>);
}
export default LiveEncodingHeartbeatOutput;
