import React from 'react'; import { MintaVideo, VideoFormat } from 'types/entities.types'; interface Props { mintaVideo?: MintaVideo; previewImage?: string; bottom?: number; setPreviewVideoPlaceHolder?: (showPlaceHolder: boolean) => void; previewVideoPlaceHolder?: boolean; setShowValidationError?: (num: boolean) => void; selectedFormat?: VideoFormat; applyVideoChanges: (isValidationError?: boolean) => void; } export declare const EditVideoPlayerComponent: React.FC; export {};