import type { UniqueIdentifier } from '@dnd-kit/core'; import * as React from 'react'; type TSortableRootProps = { sortableIds: (string | number)[]; onSortChange: (onSortChangeData: { order: UniqueIdentifier[]; oldIndex: number; newIndex: number; }) => void; }; export declare const SortableRoot: { ({ sortableIds, onSortChange, children }: React.PropsWithChildren): React.JSX.Element; displayName: string; }; export {};