import React from 'react'; interface AnimatedContentProps { /** * The content as an array or a string. */ content: string | string[]; /** * When to animate */ iterationId: number; /** * Callback to render content passing the current content */ renderContent: (content: string) => React.ReactElement; } declare const AnimatedContent: ({ content, iterationId, renderContent, }: AnimatedContentProps) => React.ReactElement; export default AnimatedContent;