import React from 'react'; import { VideoItemType, VideoType } from "../../../interfaces/types/Video"; import { ModalProps } from "../../../mantine"; type Props = { data: VideoItemType; isMobile: boolean; forceType?: VideoType.SHORTS | VideoType.VIDEO; } & ModalProps; export declare const VideoPlayerModal: ({ data, isMobile, forceType, ...rest }: Props) => React.JSX.Element; export {};