import ClipsNavService from '../abstract/clipsNavService'; interface useClipBrowserTabChangeProps { clipsNavService: ClipsNavService; isActiveSwiperSlide: boolean; isPausedGlobally?: boolean; isClipPaused: boolean; handleVideoPlay: (sendEvent?: boolean) => void; handleVideoPause: (sendEvent?: boolean) => void; } /** Hook responsible for pausing / playing clip on tab change */ declare const useClipBrowserTabChange: ({ clipsNavService, isActiveSwiperSlide, isPausedGlobally, isClipPaused, handleVideoPlay, handleVideoPause, }: useClipBrowserTabChangeProps) => void; export default useClipBrowserTabChange;