import type { SkPath } from "@shopify/react-native-skia"; export interface GetYForXProps { path: SkPath; x: number; precision?: number; } export declare const getYForX: ({ path, x, precision }: GetYForXProps) => number; export interface ComputePathProps { width: number; height: number; points: [number, number][]; cursorRadius: number; minValue: number; maxValue: number; minTimestamp: number; maxTimestamp: number; curveType: "linear"; } export declare const computePath: ({ width, height, points, cursorRadius, minTimestamp, maxTimestamp, minValue, maxValue, curveType, }: ComputePathProps) => SkPath; export declare const computeGraphData: (points: [number, number][]) => { points: [number, number][]; minTimestamp: number; maxTimestamp: number; minValue: number; minValueIndex: number; minValueXProportion: number; maxValue: number; maxValueIndex: number; maxValueXProportion: number; }; //# sourceMappingURL=computations.d.ts.map