export declare type ReactNativeSubtitles = { selectedSubtitle: { file: string; }; currentTime: number; hasSeeked: boolean; containerStyle?: Record; textStyle?: Record; }; declare const Subtitles: ({ selectedSubtitle, currentTime, hasSeeked, containerStyle, textStyle, }: { selectedSubtitle: any; currentTime: any; hasSeeked: any; containerStyle?: {}; textStyle?: {}; }) => any; export default Subtitles;