import React from 'react';
import type { EPGComponentProps } from '../types/EPGTypes';
interface EPGNavigationControlsProps extends EPGComponentProps {
    onNavigate: (direction: 'left' | 'right' | 'today') => void;
    onTimeRangeChange?: (hours: number) => void;
    canNavigateLeft?: boolean;
    canNavigateRight?: boolean;
    currentTime?: number;
    timelineStart?: number;
    timelineEnd?: number;
    visibleHours?: number;
}
export declare const EPGNavigationControls: React.FC<EPGNavigationControlsProps>;
export default EPGNavigationControls;
//# sourceMappingURL=EPGNavigationControls.d.ts.map