import { type Animation } from '@arwes/animated'; import type { AnimateTextProps } from '../types.js'; type AnimateTextSequenceProps = AnimateTextProps & { blink?: boolean; blinkDuration?: number; }; declare const animateTextSequence: (props: AnimateTextSequenceProps) => Animation; export type { AnimateTextSequenceProps }; export { animateTextSequence };