import React from 'react'; import { SlideWrapperProps } from './components/slideWrapper'; import ClipsNavService from './abstract/clipsNavService'; import { ClipWithIndexInCollection } from './types/clipPlayerTypes'; type ClipPlayerProps = SlideWrapperProps & { clip: ClipWithIndexInCollection; clipIndex: number; clipsNavService: ClipsNavService; collection: string; currentClipNavigationCategory?: string; feedTitle?: string; feedTitleImageUrl?: string; handleSelectCategory: (category: string, clipIndex: number) => void; incrementLoopCount: (clipId: string, clipIndexInCollection: number) => void; isMuted: boolean; isPausedGlobally?: boolean; onClose?: () => void; showCategories: boolean; toggleMute: () => void; videoRef: (el: HTMLVideoElement) => void; }; declare const ClipPlayer: React.FC; export default ClipPlayer;