import ClipsNavService from '../abstract/clipsNavService'; import { Clip } from '../../row/components/list/models/clip'; declare const useClipShare: ({ clip, clipIndex, clipsNavService, collection, handleVideoPause, handleVideoPlay, }: { clip: Clip; clipIndex: number; clipsNavService: ClipsNavService; collection: string; handleVideoPause: (sendEvent?: boolean) => void; handleVideoPlay: (sendEvent?: boolean) => void; }) => { sharesCount: number; onClipShare: (event: React.MouseEvent) => void; isShareActive: boolean; }; export default useClipShare;