import type { Point } from "../types/types"; import type { BezierParams } from "../validations/params"; export declare const generateBezierSVGPath: ({ x1, y1, x2, y2 }: BezierParams) => string; export declare const generateSpringSVGPolyline: (points: Point[]) => string; export declare const generateBounceSVGPolyline: (points: Point[]) => string; export declare const generateWiggleSVGPolyline: (points: Point[]) => string; export declare const generateOvershootSVGPolyline: (points: Point[]) => string;