import { type Easing } from 'motion/react';
import { type FC } from 'react';
import { type TextProps } from '../Text/Text';
export interface AnimatedTextProps extends TextProps {
    animationDelay?: number;
    animationDirection?: number;
    animationDuration?: number;
    animationEase?: Easing | Easing[];
    animationMaxBlur?: number;
    animationMaxDistance?: number;
    animationMode?: 'wait' | 'popLayout';
    textKey: number | string;
}
export declare const AnimatedText: FC<AnimatedTextProps>;
