import { SpringValue } from "react-spring"; export type Position = { x: number; y: number; }; export type SpringPosition = { x: SpringValue; y: SpringValue; };