import { type FlexStyle } from "react-native"; import { type UseDraggableSortOptions } from "./useDraggableSort"; export type UseDraggableGridOptions = Pick & { gap?: number; size: number; direction: FlexStyle["flexDirection"]; }; export declare const useDraggableGrid: ({ childrenIds, onOrderChange, onOrderUpdate, gap, size, direction, shouldSwapWorklet, }: UseDraggableGridOptions) => { draggablePlaceholderIndex: import("react-native-reanimated").SharedValue; draggableSortOrder: import("react-native-reanimated").SharedValue; };