import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/text-loop/types.d.ts interface TextLoopProps extends BaseProps, React.ComponentPropsWithoutRef<'div'> { /** Time each item stays visible, in ms (default: 3000) */ interval?: number; /** Pause cycling on hover (default: true) */ pauseOnHover?: boolean; /** Loop infinitely or stop after one full cycle (default: true) */ infinite?: boolean; /** Cycling direction (default: 'up') */ direction?: 'up' | 'down'; } //#endregion export { TextLoopProps }; //# sourceMappingURL=types.d.ts.map