import React from 'react'; import { ColorValue } from 'react-native'; import { SharedValue } from 'react-native-reanimated'; import { ActivePointComponent, ActivePointComponentSharedValue, DataPoint } from '../types'; import { PathObject } from '../utils'; declare const ActivePoint: ({ data, activeTouch, width, height, activePointComponent, activePointComponentWithSharedValue, activeIndex, path, onPointChange, color, borderColor, borderWidth, radius, showVerticalLine, showActivePointCircle, verticalLineColor, verticalLineOpacity, verticalLineWidth, verticalLineDashArray, animateTransition, }: { data: DataPoint[]; activeTouch: SharedValue; width: number; height: number; activePointComponent?: ActivePointComponent | undefined; activePointComponentWithSharedValue?: ActivePointComponentSharedValue | undefined; activeIndex: SharedValue; path: PathObject; onPointChange?: ((point?: DataPoint) => void) | undefined; color: ColorValue; borderColor: ColorValue; borderWidth: number; radius: number; showVerticalLine: boolean; showActivePointCircle: boolean; verticalLineColor: ColorValue; verticalLineOpacity: number; verticalLineWidth: number; verticalLineDashArray: number[]; animateTransition: boolean; }) => React.JSX.Element; export default ActivePoint; //# sourceMappingURL=ActivePoint.d.ts.map