UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 336 B
import React from 'react'; import { VideoItemType } from "../../../interfaces/types/Video"; import { ModalProps } from "../../../mantine"; type Props = { data: VideoItemType; isMobile: boolean; } & ModalProps; export declare const VideoPlayerModal: ({ data, isMobile, ...rest }: Props) => React.JSX.Element; export {};