interface VideoPlayerProps { src?: string; poster?: string; title?: string; /** Hover thumbnail over the seek bar (YouTube-style). Default true. */ preview?: boolean; class?: string; onplay?: () => void; onpause?: () => void; } declare const VideoPlayer: import("svelte").Component; type VideoPlayer = ReturnType; export default VideoPlayer;