import { FC } from 'react'; import { ViewStyle } from 'react-native'; interface ProgressBarProps { videoLength: number; currentTime: number; progressBarStyle?: ViewStyle; progressBarContainerStyle?: ViewStyle; } export declare const ProgressBar: FC; export {};