import { ReactNode } from 'react'; import { ViewStyle } from 'react-native'; export interface MarqueeProps { containerStyle?: ViewStyle; speed?: number; delay?: number; cooldown?: number; byPassAnimationCallback?: boolean; children: ReactNode; } export default function Marquee({ speed, delay, containerStyle, byPassAnimationCallback, children, }: MarqueeProps): JSX.Element;