/**
 * @name CarouselText
 * @author Lester
 * @date 2021-05-12 16:10
 */
import React from 'react';
interface CarouselTextProps {
    duration?: number;
}
declare const CarouselText: React.FC<CarouselTextProps>;
export default CarouselText;
