import React from 'react'; import { MediaSrcType, MediaType, MintaVideo, VideoFormat } from 'types/entities.types'; interface Props { mintaVideo?: MintaVideo; imageUrl?: string; format?: VideoFormat; mediaType: MediaType; mediaSrcType?: MediaSrcType; bottom?: number; showLottieEffect?: boolean; onMediaClick?: () => void | undefined; setPreviewVideoPlaceHolder?: (showPlaceHolder: boolean) => void; previewVideoPlaceHolder?: boolean; } declare const PreviewMediaComponent: React.FC; export default PreviewMediaComponent;