import React from 'react'; import './video-js.css'; interface IProps { src?: string; showControllers?: boolean; size?: { width: number; height: number; }; paused?: boolean; className?: string; onMetaDataLoad?: (videoRef: HTMLVideoElement) => void; children?: React.ReactNode; onPlaying?: (time: number) => void; onStatusChange?: (isPlaying: boolean) => void; wrapperRef: React.ForwardedRef; } /** * 视频播放器 * @param props * @returns */ export declare const VideoPlayer: React.MemoExoticComponent>>; export {}; //# sourceMappingURL=index.d.ts.map