import React from 'react'; export interface SimpleTimeSliderProps { setTime: (time: string) => void; timeValue: string; startValue: string; endValue: string; } export declare const SimpleTimeSlider: React.FC;