import React from 'react'; import { ViewStyle } from 'react-native'; import type { VideoTimelineEvent } from './types'; interface VideoTimelineProps { timeline: VideoTimelineEvent[]; duration: number; currentTime: number; onSeek: (time: number) => void; style?: ViewStyle; } export declare function VideoTimeline({ timeline, duration, currentTime, onSeek, style }: VideoTimelineProps): React.JSX.Element | null; export {};