import React from 'react'; import ClipsNavService from '../../abstract/clipsNavService'; export type SharedSlideWrapperProps = { closeButtonTitle: string | null; isActiveSwiperSlide: boolean; isAnimatingIn: boolean; isAnimatingOut: boolean; isLastPlayerInStack: boolean; onClose?: () => void; toggleMute?: () => void; }; type SlideWrapperProps = SharedSlideWrapperProps & { hasError?: boolean; header?: React.ReactNode; clipsNavService: ClipsNavService; isMuted: boolean; metadata?: React.ReactNode; onRetry?: () => void; onPrimaryAction: (event: React.MouseEvent) => void; onSecondaryAction?: (event: React.MouseEvent) => void; primaryActionText?: string | null; secondaryActionText?: string | null; showPlayButton: boolean; togglePause: () => void; }; export declare const SlideWrapper: React.FC; export {};