import { Axis, Box } from "../../projection/geometry/types"; export interface ReorderContextProps { axis: "x" | "y"; registerItem: (id: T, layout: Box) => void; updateOrder: (id: T, offset: number, velocity: number) => void; } export interface ItemData { value: T; layout: Axis; }