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