import React from 'react'; export interface MagicalTextProps { text: string; animationTime?: number; colors?: string[]; style?: React.CSSProperties; textStyle?: React.CSSProperties; disableFun?: boolean; fadeText?: boolean; Adornment?: React.ElementType; showAdornments?: boolean; adornmentOptions?: { animationType?: string | React.ElementType; }; } /** * @component * This is a component that displays text in a faded fashion with optional adornments (such as sparkles or hearts). * * Inspiration: * https://patorjk.com/text-color-fader - Initial goal * https://www.youtube.com/watch?v=yu0Cm4BqQv0 - Idea for the sparkles and movement of the color fade * https://linear.app/readme - What inspired the above youtube video * */ declare function MagicalText({ text, animationTime, colors, style, textStyle, disableFun, fadeText, showAdornments, Adornment, adornmentOptions, }: MagicalTextProps): React.JSX.Element; export { MagicalText };