import * as React from 'react'; type Props = { text?: string; typeSpeed?: number; showCursor?: boolean; style?: React.CSSProperties; }; declare function TypedText(props: Props): JSX.Element; declare namespace TypedText { var defaultProps: { typeSpeed: number; showCursor: boolean; }; } export default TypedText;