import React from 'react'; import { MaterialUIColor, SliderThickness, IconButtonProps } from '../types'; interface ProgressSliderProps { color?: MaterialUIColor; thickness?: SliderThickness; thumb?: boolean; } export interface VolumeBarProps { mute?: boolean; player: HTMLMediaElement; MuteProps?: IconButtonProps; } declare const VolumeBar: (props: VolumeBarProps & ProgressSliderProps) => React.JSX.Element; export default VolumeBar;