import SharedReference from "../../../utils/reference"; import type { IResolutionInfo } from "../../adaptive"; /** Buffer "goal" at which we stop downloading new segments. */ declare const wantedBufferAhead: SharedReference; /** Buffer maximum size in kiloBytes at which we stop downloading */ declare const maxVideoBufferSize: SharedReference; /** Max buffer size after the current position, in seconds (we GC further up). */ declare const maxBufferAhead: SharedReference; /** Max buffer size before the current position, in seconds (we GC further down). */ declare const maxBufferBehind: SharedReference; declare const limitVideoResolution: SharedReference; declare const throttleVideoBitrate: SharedReference; export { wantedBufferAhead, maxVideoBufferSize, maxBufferBehind, maxBufferAhead, limitVideoResolution, throttleVideoBitrate, };