import type { BounceCurveKey, OvershootCurveKey, OvershootStyleKey, SpringCurveKey, WiggleCurveKey } from "../types/enums"; import type { Point } from "../types/types"; type Value = { easingValue: string; sampledPoints: Point[]; }; export declare const springCalculations: Record; export declare const bounceCalculations: Record; export declare const wiggleCalculations: Record; export declare const overshootCalculations: Record>; export {};