import { Animated, StyleProp, ViewStyle } from 'react-native'; export declare type TimelineBarProps = { barHeight?: number; buffer?: number; filledColor?: string; progress?: ViewStyle['width'] | Animated.Value; styles?: Partial<{ duration: StyleProp; buffer: StyleProp; played: StyleProp; }>; }; declare const TimelineBar: ({ barHeight, buffer, filledColor, progress, styles, }: TimelineBarProps) => JSX.Element; export default TimelineBar;