/// <reference types="react" />
import type { Animations } from './animationStyles';
declare type TextraProps = {
    data: string[];
    effect?: Animations;
    duration?: number;
    stopDuration?: number;
    className?: string;
    onUpdate?: (index: number) => void;
};
declare const Textra: (props: TextraProps) => JSX.Element;
export default Textra;
