export type Point = { x: number; y: number; }; export declare const createSmoothSvgPath: ({ points }: { points: Point[]; }) => string;