import { ReactNode, FC } from "react";
declare type MarqueeProps = {
    children: ReactNode[];
    direction: "ltr" | "rtl";
    velocity: number;
    scatterRandomly: boolean;
    resetAfterTries: number;
    onInit: () => void;
    onFinish: ({ totalTries }: {
        totalTries: number;
    }) => void;
};
declare const Marquee: FC<MarqueeProps>;
export default Marquee;
//# sourceMappingURL=Marquee.d.ts.map