import React from "react"; declare type DragSortableItemsProps = { id: string; index: number; swap: (a: number, b: number) => void; dndIndicator?: string; }; export declare const SortableWrapper: React.FC; export {};