import React from 'react'; export interface AnimatedLinkProps { sourceX: number; sourceY: number; targetX: number; targetY: number; weight: number; index: number; color: string; opacity?: number; strokeWidth?: number; shape?: 'straight' | 'curved'; curveStrength?: number; parallelIndex?: number; parallelCount?: number; onFocus?: () => void; onBlur?: () => void; onPress?: () => void; } export declare const AnimatedLink: React.FC;