import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/marquee/types.d.ts interface MarqueeProps extends BaseProps, React.ComponentPropsWithoutRef<'div'> { /** Scroll direction */ direction?: 'left' | 'right'; /** Animation duration in seconds */ duration?: number; /** Pause animation on hover */ pauseOnHover?: boolean; /** Gap between items in pixels */ gap?: number; /** Apply edge fade mask */ fade?: boolean; /** Loop the animation infinitely (duplicates children for seamless loop) */ infinite?: boolean; } //#endregion export { MarqueeProps }; //# sourceMappingURL=types.d.ts.map