import React from 'react';
export default function usePlayer(): {
    playerRef: React.RefObject<null>;
    getCurrentTime: () => number;
};
