import { ApiError } from './apiError';
import { LiveStreamEventDvrWindowErrorReason } from './liveStreamEventDvrWindowErrorReason';
export interface LiveStreamEventDvrWindowError extends ApiError {
    reason?: LiveStreamEventDvrWindowErrorReason;
}
