import type { Line } from 'd3-shape'; import type { DataSeries, DataPoint } from '@shopify/polaris-viz-core'; export declare const SPRING_CONFIG: { friction: number; clamp: boolean; mass: number; tension: number; }; export interface Props { activeIndex: number | null; lineGenerator: Line; data: DataSeries[]; } export declare function useLinearChartAnimations({ activeIndex, lineGenerator, data, }: Props): { animatedCoordinates: import("@react-spring/web").Interpolation[] | null; }; //# sourceMappingURL=useLinearChartAnimations.d.ts.map