import { AnimationEasing, ComposableEffect } from '../types';
interface AnimatedLetterProps {
    letterIndex: number;
    content: string;
    effect: ComposableEffect;
    duration: number;
    easing: AnimationEasing;
    animatedItems: Set<number>;
}
declare const AnimatedLetter: import("react").MemoExoticComponent<({ letterIndex, content, effect, duration, easing, animatedItems }: AnimatedLetterProps) => import("react/jsx-runtime").JSX.Element>;
export default AnimatedLetter;
//# sourceMappingURL=AnimatedLetter.d.ts.map