import { ComponentProps, h } from 'preact'; import Video from './video'; type Props = { controls?: boolean; hideProgressBar?: boolean; hideMute?: boolean; hidePlayPause?: boolean; persistentControls?: boolean; onUserMuted?: (muted: boolean) => void; }; declare const VideoWrapper: { (props: ComponentProps & Props): h.JSX.Element; className: string; }; export default VideoWrapper;