/// import { ViewProps } from 'react-native'; import { SharedValue } from 'react-native-reanimated'; import type { Dictionary } from '../../typings/common'; import { Data, SortableListItemProps } from './types'; export interface SortableListContextType { data: Data; itemsOrder: SharedValue; lockedIds: SharedValue>; onChange: () => void; itemSize: SharedValue; horizontal?: boolean; onItemLayout: ViewProps['onLayout']; enableHaptic?: boolean; scale?: number; itemProps?: { margins?: { marginTop?: number; marginBottom?: number; marginLeft?: number; marginRight?: number; }; }; } declare const SortableListContext: import("react").Context; export default SortableListContext;