import React from 'react'; import { SharedValue } from 'react-native-reanimated'; import { DataPoint, ExtraConfig, Line } from './types'; declare const ChartWrapper: ({ lines, svgHeight, svgWidth, activeTouchX, activeTouch, extraConfig, onPointChange, endSpacing, initialActivePoint, activeLineIndex, }: { lines: Line[]; svgHeight: number; svgWidth: number; activeTouchX: SharedValue; activeTouch: SharedValue; extraConfig: ExtraConfig; endSpacing: number; initialActivePoint?: number | undefined; onPointChange: (point?: DataPoint) => void; activeLineIndex: number; }) => React.JSX.Element; export default ChartWrapper; //# sourceMappingURL=ChartWrapper.d.ts.map