/// import { ViewProps, ViewStyle } from 'react-native'; export interface PlayingBarProps { bars?: number[]; barStyle?: ViewProps; containerStyle?: ViewStyle; minHeight?: number; maxHeight?: number; tps?: number; frequency?: number; byPassAnimatedCallback?: boolean; } export default function PlayingBar({ bars, barStyle, containerStyle, minHeight, maxHeight, tps, frequency, byPassAnimatedCallback, }: PlayingBarProps): JSX.Element;