UNPKG

react-native-tree-multi-select

Version:

Super-fast, customizable tree view component for React Native with drag-and-drop reordering, multi-selection, and search filtering.

14 lines 635 B
import { Animated } from "react-native"; import type { __FlattenedTreeNode__, DragDropCustomizations, TreeItemCustomizations } from "../types/treeView.types"; interface DragOverlayProps<ID> extends TreeItemCustomizations<ID> { storeId: string; overlayY: Animated.Value; overlayX: Animated.Value; node: __FlattenedTreeNode__<ID>; level: number; dragDropCustomizations?: DragDropCustomizations<ID>; } declare function _DragOverlay<ID>(props: DragOverlayProps<ID>): import("react/jsx-runtime").JSX.Element; export declare const DragOverlay: typeof _DragOverlay; export {}; //# sourceMappingURL=DragOverlay.d.ts.map