import { default as React } from 'react'; import { SvgData } from '../utils'; import { Translations } from '../translations/consts'; interface PreviewSectionProps { selectedSvg: SvgData | null; animationDuration: number; isCreateAnimationError: boolean; isGeneratingSvg: boolean; translations: Translations; dataHook?: string; } declare const PreviewSection: React.FC; export default PreviewSection;