import React from 'react';

interface WordAnimationProps {
    text: string;
    className?: string;
    wordClassName?: string;
}

declare const WordAnimation: React.FC<WordAnimationProps>;

export { type WordAnimationProps, WordAnimation as default };
