import React from 'react'; import type { useChartTheme } from '../../theme/ChartThemeContext'; export interface AnimatedNodeProps { id: string; x: number; y: number; color: string; label?: string; radius?: number; index: number; disabled?: boolean; theme: ReturnType; showLabel?: boolean; onFocus?: () => void; onBlur?: () => void; onPress?: () => void; testID?: string; } export declare const AnimatedNode: React.FC;