/// <reference types="react" />
type TickerProps = {
    children: JSX.Element[];
    duration?: number;
};
export declare const Ticker: ({ children, duration }: TickerProps) => JSX.Element;
export {};
