import { TextAnimationCustomProps } from '../../types/component-types';
import React from 'react';
import "../../../../dist/style/styles.css";
declare function TextAnimation({ text, customOptions, onAnimationEnd, }: {
    text: string;
    customOptions?: TextAnimationCustomProps;
    onAnimationEnd?: () => void;
}): React.JSX.Element;
declare const _default: React.MemoExoticComponent<typeof TextAnimation>;
export default _default;
