/// import { ViewStyle, TextStyle } from 'react-native'; export interface SwitchableTextProps { containerStyle?: ViewStyle; texts: string[]; textStyle?: TextStyle; duration?: number; progressBar?: boolean; progressBarStyle?: ViewStyle; byPassAnimationCallback?: boolean; } export default function SwitchableText({ containerStyle, texts, textStyle, duration, progressBar, byPassAnimationCallback, progressBarStyle, }: SwitchableTextProps): JSX.Element | null;