import type { CodeAnimationMode } from '../types'; interface Props { oldCode: string; newCode: string; language: string; theme: string; mode: CodeAnimationMode; speed?: number; highlightColor?: string; highlightDuration?: number; showLineNumbers?: boolean; onComplete?: () => void; } declare const CodeMorph: import("svelte").Component; type CodeMorph = ReturnType; export default CodeMorph;