import { PlayerState } from '../reducers/player';
import { VideoWatchEvent } from './video-event-time';
/**
 * @function processSticky
 * @returns array of videowatch events with filled data
 * about player stickiness (if it's minimized or not)
 */
export declare function modifyEventArrayWithStickyInfo(playerId: string, players: PlayerState, videoWatches: VideoWatchEvent[]): VideoWatchEvent[];
