import { FC } from 'react'; import { CSSPropertiesWithVars } from 'styled-components/dist/types'; type AnimatedTypewriterTextProps = { shouldHideCursor: boolean; shownText: string; textStyle?: CSSPropertiesWithVars; shouldRemainSingleLine: boolean; }; declare const AnimatedTypewriterText: FC; export default AnimatedTypewriterText;