import React from 'react'; import { type DragStartEvent } from '@dnd-kit/core'; import type { FlattenedItem } from './types'; import { type TreeItemRenderFn } from './TreeItem'; type Props = React.PropsWithChildren<{ items: readonly FlattenedItem[]; indentationWidth?: number; onDragStart?: (id: string, event: DragStartEvent) => void; onDragEnd?: (from: FlattenedItem, to: FlattenedItem) => void; renderItem: TreeItemRenderFn; }>; export default function SortableTreeDndContext({ items, indentationWidth, onDragStart, onDragEnd, children, renderItem, }: Props): JSX.Element; export {}; //# sourceMappingURL=SortableTreeDndContext.d.ts.map