export interface CuePoint {
  id: string;
  startTime: number;
  endTime: number;
  metadata: any;
}
