interface UsePlayPauseReplayHook { isPlaying: boolean; isFinished: boolean; onPlay: VoidFunction; onStop: VoidFunction; } /** * Play, pause, replay handlers * @category hooks * @category MediaStore */ export declare const usePlayPauseReplayHook: () => UsePlayPauseReplayHook; export {};