Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import React from 'react';
import { VideoPresetControlProps } from './typings';
/**
* @todo !!! NEEDS A PAUSE ICON, OR MORPH THE PLAY ICON INTO PAUSE
* @todo later - this is the actual controls, the other is VideoFlare
*/
declare class ActualVideoControls extends React.PureComponent<VideoPresetControlProps> {
render(): JSX.Element;
}
declare class VideoControls extends React.Component<VideoPresetControlProps> {
static defaultProps: {
state: Readonly<{}>;
};
render(): JSX.Element;
}
export { ActualVideoControls, VideoControls };
export default VideoControls;