import React from 'react';
import { CalendarTheme } from '@/types/calendar';
interface CurrentTimeIndicatorProps {
    currentTime: Date;
    startHour: number;
    hourHeight: number;
    theme?: CalendarTheme;
    showTimeLabel?: boolean;
}
declare const CurrentTimeIndicator: React.FC<CurrentTimeIndicatorProps>;
export default CurrentTimeIndicator;
//# sourceMappingURL=CurrentTimeIndicator.d.ts.map