import React, { ReactNode } from 'react'; interface MarqueeTextProps { children?: ReactNode className?: string duration?: number direction?: 'left' | 'right' textSpacing?: string pauseOnHover?: boolean playOnlyInView?: boolean treshold?: number } declare const MarqueeText: React.FC; export { MarqueeText as default };