import type { Box } from "framer-motion"; import { Context } from "../../vendor/runed/index.js"; import type { Mutable } from "../../types/common.js"; export interface ReorderContextProps { axis?: Mutable<"x" | "y">; registerItem?: (item: T, layout: Box) => void; updateOrder?: (item: T, offset: number, velocity: number) => void; } export declare const ReorderContext: Context>;