import React, { PropsWithChildren } from 'react'; import { TextProps } from '../Text/Text'; export declare const testIds: { root: string; readonly cursor: string; }; export type TextCursorAnimationProps = { /** * Whether to animate the text reveal with a sliding wipe animation * and a cursor that transitions from grey to green. */ animate?: boolean; ['data-testid']?: string; delay?: number; waitForPageLoad?: boolean; } & React.HTMLAttributes & Omit; export declare function TextCursorAnimation({ children, className, animate, 'data-testid': testId, delay, waitForPageLoad, variant, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;