import React from 'react'; interface WordAnimationProps { text: string; className?: string; wordClassName?: string; } declare const WordAnimation: React.FC; export { type WordAnimationProps, WordAnimation as default };