import { UniqueIdentifier } from "../../../types"; import { type UseDraggableSortOptions } from "./useDraggableSort"; export type UseDraggableStackOptions = Pick & { gap?: number; horizontal?: boolean; }; export declare const useDraggableStack: ({ childrenIds, onOrderChange, onOrderUpdate, gap, horizontal, shouldSwapWorklet, }: UseDraggableStackOptions) => { draggablePlaceholderIndex: import("react-native-reanimated").SharedValue; draggableSortOrder: import("react-native-reanimated").SharedValue; resetSortOrder: () => void; refreshOffsets: () => void; };