import React from 'react'; import type { ChartDataPoint } from '../../types'; import type { useChartTheme } from '../../theme/ChartThemeContext'; export interface CandleDataPoint extends ChartDataPoint { open: number; close: number; high: number; low: number; chartX: number; chartY: number; wickY1: number; wickY2: number; bodyTop: number; bodyHeight: number; width: number; } export interface AnimatedCandleProps { candle: CandleDataPoint; colorBull: string; colorBear: string; wickColor?: string; isSelected?: boolean; index: number; disabled?: boolean; theme: ReturnType; /** Draw duration (ms) for the candle body grow-in animation */ duration?: number; } export declare const AnimatedCandle: React.FC;