import * as React from 'react'; import './style/index.less'; interface MarqueeOptions { width: number | string; height: number | string; time: number; direction: 'right' | 'left' | 'up' | 'down'; behavior: 'alternate' | 'normal'; curve: 'linear' | 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out'; background: boolean | string; border: boolean | string; children: React.ReactNode; } export type MarqueeProps = Partial; declare const Marquee: React.FC; export default Marquee;