import React from 'react'; import { BaseProps } from '../../component-helpers'; export type TextRevealAnimationProps = BaseProps & Omit, 'children'> & { children: string; }; export declare const TextRevealAnimation: React.ForwardRefExoticComponent & React.RefAttributes>;