/** Indicator that split volumes into a high or down meaning */ export declare const MIN_VOLUME = 50; /** Playback Rates for media */ export declare const PLAYBACK_RATES: number[]; /** Period of time(in ms), after which controls are hidden */ export declare const OVERLAY_HIDE_DELAY = 3000; export declare const PROGRESS_BAR_DIVIDER = 100; export declare const DEFAULT_EVENT_ANIMATION_DURATION = 300; export declare const DEFAULT_PIP_SIZE: Record<'width' | 'height', number>; /** By default volume is a number from [0,1] interval. Multiplier is used to get more simple values */ export declare const VOLUME_MULTIPLIER = 100; /** The time between onProgress callbacks, in milliseconds */ export declare const PROGRESS_INTERVAL = 50; /** Seconds that should be skipped when using Forward/Rewind buttons */ export declare const SECONDS_TO_SKIP = 10;