import React from 'react'; import '../../styles/EPGTimeline.css'; export interface EPGProgram { id: string | number; title: string; start: string; end: string; type?: string; } export interface EPGChannel { id: string | number; name: string; logo: string; logoColor: string; programs: EPGProgram[]; } export interface EPGTimelineProps { channels: EPGChannel[]; } export declare const EPGTimeline: React.FC;