import React from 'react'; import { type Virtualizer } from '@tanstack/react-virtual'; import { type TreeItemRenderFn } from './TreeItem'; import type { FlattenedItem } from './types'; interface Props { items: readonly FlattenedItem[]; indentationWidth?: number; renderItem: TreeItemRenderFn; isDraggable?: boolean; withDepthMarkers?: boolean; virtualizerRef?: React.Ref>; } export default function SortableTree({ items, indentationWidth, renderItem, isDraggable, withDepthMarkers, virtualizerRef, }: Props): JSX.Element; export {}; //# sourceMappingURL=SortableTree.d.ts.map