import { default as React } from 'react'; export interface EliceVideoPlayerProps { source: string; autoPlay?: boolean; onPlay?: () => void; onPause?: () => void; onEnded?: () => void; onProgress?: (seconds: number) => void; tracks?: { src: string; kind: string; srclang: string; label: string; }[]; sx?: React.CSSProperties; height?: string; pageKey?: string; videoKey?: string; } declare const EliceVideoPlayer: ({ source, autoPlay, onPlay, onPause, onEnded, onProgress, tracks, sx, height, videoKey, }: EliceVideoPlayerProps) => import("react/jsx-runtime").JSX.Element; export default EliceVideoPlayer;