import { SliderProps } from '@mui/material'; import { FC } from 'react'; interface ProgressTimerDisplayProps extends SliderProps { className?: string; 'data-testid'?: string; } /** A MUI Slider configured for displaying currentTime/duration values from `MediaStore` * @category React Component * @category UI Controls */ export declare const ProgressTimerDisplay: FC; export {};