/// import { HMSPlaylistType } from '@100mslive/hms-video-store'; export interface PlaylistControlsClasses { root?: string; controlsContainer?: string; controls?: string; icon?: string; progress?: string; sliderContainer?: string; rightControls?: string; volumeControl?: string; volumeControlIcon?: string; } export interface PlaylistControlsProps { classes?: PlaylistControlsClasses; type?: HMSPlaylistType; toggleFullScreen?: () => void; isFullScreen?: boolean; } export declare const PlaylistControls: ({ classes, type, toggleFullScreen, isFullScreen, }: PlaylistControlsProps) => JSX.Element;