import { Box } from 'framer-motion'; import { Ref } from 'vue'; export interface ReorderContextProps { axis?: Ref<'x' | 'y'>; registerItem?: (item: T, layout: Box) => void; updateOrder?: (item: T, offset: number, velocity: number) => void; groupRef?: Ref; } export declare const useReorderContext: = ReorderContextProps>(fallback?: T) => T extends null ? ReorderContextProps : ReorderContextProps, reorderContextProvider: (contextValue: ReorderContextProps) => ReorderContextProps;