import * as d3 from 'd3'; import type { SharedValue } from 'react-native-reanimated'; export type LineChartDataPoint = { timestamp: number; value: number; }; export type LineChartContextValue = { originalData: LineChartDataPoint[]; width: number; height: number; padding: number; domainX: [number, number]; domainY: [number, number]; yRange: [number, number]; xScale: d3.ScaleTime; yScale: d3.ScaleLinear; path: any; areaPath: any; baselineY: number; gradientColors: string[]; gradientPositions: number[]; currentX: SharedValue; currentY: SharedValue; isActive: SharedValue; currentValue: SharedValue; currentTimestamp: SharedValue; yMap: Float32Array; valueMap: Float32Array; }; //# sourceMappingURL=interfaces.d.ts.map