import React from 'react';
interface TextAnimationProps {
    text: string;
}
/**
 * `TextAnimation` applies a rainbow animation to text.
 */
declare const TextAnimation: React.MemoExoticComponent<({ text }: TextAnimationProps) => JSX.Element>;
export { TextAnimation };
