import { MotionProps } from 'motion/react'; interface TypingAnimationProps extends MotionProps { children: string; className?: string; duration?: number; delay?: number; as?: React.ElementType; startOnView?: boolean; } export declare function TypingAnimation({ children, className, duration, delay, as: Component, startOnView, ...props }: TypingAnimationProps): import("react").JSX.Element; export default TypingAnimation;