import React from 'react'; export interface InfiniteScrubberProps { time: number; onTimeChange?: (time: number) => void; style?: { backgroundColor?: string; textColor?: string; }; scale?: 'minute' | 'hour' | 'quarter-hour' | 'day'; controls?: boolean; } export declare const InfiniteScrubber: React.FC;