import React from 'react'; import { SharedValue } from 'react-native-reanimated'; import { ActivePointComponent, ActivePointComponentSharedValue, DataPointSharedValue } from '../types'; declare const ActivePointComponentWrapper: ({ activePointPositionX, activePointPositionY, pointOpacity, width, activePointSharedValue, activePointComponentWithSharedValue, activePointComponent, }: { activePointPositionX: SharedValue; activePointPositionY: SharedValue; pointOpacity: SharedValue; width: number; activePointSharedValue: DataPointSharedValue; activePointComponent?: ActivePointComponent | undefined; activePointComponentWithSharedValue?: ActivePointComponentSharedValue | undefined; }) => React.JSX.Element; export default ActivePointComponentWrapper; //# sourceMappingURL=ActivePointComponentWrapper.d.ts.map