import type { RefObject } from "react";
import type { PlayerState, PlayerAction } from "../types";
export declare const usePlayerEffects: (state: PlayerState, dispatch: React.Dispatch<PlayerAction>, playerRef: RefObject<HTMLVideoElement>) => {
    tracksToPreload: number[];
};
